Interface LibraryService

All Superinterfaces:
Serializable
All Known Implementing Classes:
SimpleLibraryService

public interface LibraryService extends Serializable
  • Method Details

    • fillLibrary

      void fillLibrary()
    • findBooksByAuthor

      List<Book> findBooksByAuthor(String lastName)
    • findBooksByTitle

      List<Book> findBooksByTitle(String title)
    • getNumBooks

      long getNumBooks()
    • getNumAuthors

      long getNumAuthors()
    • createAuthor

      void createAuthor(Author author)