Uses of Class
info.ejava.examples.db.mongo.books.dto.BookDTO
Packages that use BookDTO
Package
Description
-
Uses of BookDTO in info.ejava.examples.db.mongo.books.controller
Methods in info.ejava.examples.db.mongo.books.controller that return types with arguments of type BookDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<BookDTO> BooksController.createBook
(BookDTO bookDTO) org.springframework.http.ResponseEntity
<BookDTO> org.springframework.http.ResponseEntity
<BookDTO> BooksController.getRandomBook()
Methods in info.ejava.examples.db.mongo.books.controller with parameters of type BookDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<BookDTO> BooksController.createBook
(BookDTO bookDTO) org.springframework.http.ResponseEntity
<BooksPageDTO> BooksController.findBooksByExample
(Integer pageNumber, Integer pageSize, String sortString, BookDTO probe) org.springframework.http.ResponseEntity
<Void> BooksController.updateBook
(String id, BookDTO bookDTO) -
Uses of BookDTO in info.ejava.examples.db.mongo.books.dto
Fields in info.ejava.examples.db.mongo.books.dto with type parameters of type BookDTOModifier and TypeFieldDescriptionstatic UnaryOperator
<BookDTO> BookDTOFactory.nextDate
static UnaryOperator
<BookDTO> BookDTOFactory.oneUpId
Methods in info.ejava.examples.db.mongo.books.dto that return BookDTOMethods in info.ejava.examples.db.mongo.books.dto that return types with arguments of type BookDTOModifier and TypeMethodDescriptionBookDTOFactory.BooksListDTOFactory.books
(int min, int max, UnaryOperator<BookDTO>... visitors) BooksPageDTO.getContent()
Constructor parameters in info.ejava.examples.db.mongo.books.dto with type arguments of type BookDTOModifierConstructorDescriptionBooksPageDTO
(List<BookDTO> content, Long totalElements, PageableDTO pageableDTO) BooksPageDTO
(org.springframework.data.domain.Page<BookDTO> page) -
Uses of BookDTO in info.ejava.examples.db.mongo.books.svc
Methods in info.ejava.examples.db.mongo.books.svc that return BookDTOModifier and TypeMethodDescriptionBooksService.createBook
(BookDTO bookDTO) BooksServiceImpl.createBook
(BookDTO bookDTO) BooksService.getRandomBook()
BooksServiceImpl.getRandomBook()
Methods in info.ejava.examples.db.mongo.books.svc that return types with arguments of type BookDTOModifier and TypeMethodDescriptionorg.springframework.data.domain.Page
<BookDTO> BooksService.findBooksMatchingAll
(BookDTO probe, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksServiceImpl.findBooksMatchingAll
(BookDTO probeDTO, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksService.findPublishedAfter
(LocalDate exclusive, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksServiceImpl.findPublishedAfter
(LocalDate afterDate, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksService.getBooks
(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksServiceImpl.getBooks
(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> Methods in info.ejava.examples.db.mongo.books.svc with parameters of type BookDTOModifier and TypeMethodDescriptionBooksService.createBook
(BookDTO bookDTO) BooksServiceImpl.createBook
(BookDTO bookDTO) org.springframework.data.domain.Page
<BookDTO> BooksService.findBooksMatchingAll
(BookDTO probe, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<BookDTO> BooksServiceImpl.findBooksMatchingAll
(BookDTO probeDTO, org.springframework.data.domain.Pageable pageable) void
BooksService.updateBook
(String id, BookDTO bookDTO) void
BooksServiceImpl.updateBook
(String id, BookDTO bookDTO) Method parameters in info.ejava.examples.db.mongo.books.svc with type arguments of type BookDTO