package book;

public class Book {
    private Author author; 
    private long bookID;
    private String title;

    public Author getAuthor () { 
        return author;
    }

    public long getBookID () {
        return bookID;
    }

    public String getTitle () {
        return title;
    }

    public void setAuthor (Author auth) {
        author = auth;
    }

    public void setBookID (long id) {
        bookID =id;
    }
    public String setTitle (String ttl) {
        title = ttl; 
    } 
}
