package javacodebook.server.servletbasics.pathinfo;

public class Book
{
    private String title;
    private String authors;
    private String isbn;
    private String publisher;

    public Book(String title, String authors, String isbn, String publisher)
    {
        this.title = title;
        this.authors = authors;
        this.isbn = isbn;
        this.publisher = publisher;
    }

    public String getTitle() {
        return title;
    }

    public String getAuthors() {
        return authors;
    }

    public String getIsbn() {
        return isbn;
    }

    public String getPublisher() {
        return publisher;
    }
}
