package library.books; public class Book { private String isbn; private String title; private String author; private int publicationYear; private boolean isAvailable; public Book(String isbn, String title, String author, int publicationYear, boolean isAvailable) { this.isbn = isbn; this.title = title; this.author = author; this.publicationYear = publicationYear; this.isAvailable = isAvailable; } public String getIsbn() { return isbn; } public void setIsbn(String isbn) { this.isbn = isbn; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public int getPublicationYear() { return publicationYear; } public void setPublicationYear(int publicationYear) { this.publicationYear = publicationYear; } public boolean isAvailable() { return isAvailable; } public void setAvailable(boolean available) { isAvailable = available; } @Override public String toString() { return "Book{" + "isbn='" + isbn + '\'' + ", title='" + title + '\'' + ", author='" + author + '\'' + ", publicationYear=" + publicationYear + ", isAvailable=" + isAvailable + '}'; } }