Interface BooksService
- All Known Implementing Classes:
BooksServiceImpl
public interface BooksService
-
Method Summary
Modifier and TypeMethodDescriptioncreateBook
(BookDTO bookDTO) void
void
deleteBook
(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) void
updateBook
(String id, BookDTO bookDTO)