Interface BooksService
- All Known Implementing Classes:
BooksServiceImpl
public interface BooksService
-
Method Summary
Modifier and TypeMethodDescriptioncreateBook(BookDTO bookDTO) voidvoiddeleteBook(String id) org.springframework.data.domain.Page<BookDTO> findBooksMatchingAll(BookDTO probe, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<BookDTO> findPublishedAfter(LocalDate exclusive, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<BookDTO> getBooks(org.springframework.data.domain.Pageable pageable) voidupdateBook(String id, BookDTO bookDTO)