Uses of Class
info.ejava.examples.db.jpa.songs.dto.SongDTO
Packages that use SongDTO
Package
Description
-
Uses of SongDTO in info.ejava.examples.db.jpa.songs.controller
Methods in info.ejava.examples.db.jpa.songs.controller that return types with arguments of type SongDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<SongDTO> SongsController.createSong(SongDTO songDTO) org.springframework.http.ResponseEntity<SongDTO> SongsController.getRandomSong()org.springframework.http.ResponseEntity<SongDTO> SongsController.getSong(int id) Methods in info.ejava.examples.db.jpa.songs.controller with parameters of type SongDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<SongDTO> SongsController.createSong(SongDTO songDTO) org.springframework.http.ResponseEntity<SongsPageDTO> SongsController.findSongsByExample(Integer pageNumber, Integer pageSize, String sortString, SongDTO probe) org.springframework.http.ResponseEntity<Void> SongsController.updateSong(int id, SongDTO songDTO) -
Uses of SongDTO in info.ejava.examples.db.jpa.songs.dto
Fields in info.ejava.examples.db.jpa.songs.dto with type parameters of type SongDTOModifier and TypeFieldDescriptionstatic UnaryOperator<SongDTO> SongDTOFactory.nextDatestatic UnaryOperator<SongDTO> SongDTOFactory.oneUpIdMethods in info.ejava.examples.db.jpa.songs.dto that return SongDTOModifier and TypeMethodDescriptionfinal SongDTOSongDTOFactory.make(UnaryOperator<SongDTO>... visitors) Methods in info.ejava.examples.db.jpa.songs.dto that return types with arguments of type SongDTOModifier and TypeMethodDescriptionSongsPageDTO.getContent()SongDTOFactory.SongsListDTOFactory.songs(int min, int max, UnaryOperator<SongDTO>... visitors) Constructor parameters in info.ejava.examples.db.jpa.songs.dto with type arguments of type SongDTOModifierConstructorDescriptionSongsPageDTO(List<SongDTO> content, Long totalElements, PageableDTO pageableDTO) SongsPageDTO(org.springframework.data.domain.Page<SongDTO> page) -
Uses of SongDTO in info.ejava.examples.db.jpa.songs.svc
Methods in info.ejava.examples.db.jpa.songs.svc that return SongDTOModifier and TypeMethodDescriptionSongsService.createSong(SongDTO songDTO) SongsServiceImpl.createSong(SongDTO songDTO) SongsService.getRandomSong()SongsServiceImpl.getRandomSong()SongsService.getSong(int id) SongsServiceImpl.getSong(int id) Methods in info.ejava.examples.db.jpa.songs.svc that return types with arguments of type SongDTOModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<SongDTO> SongsService.findReleasedAfter(LocalDate exclusive, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsServiceImpl.findReleasedAfter(LocalDate afterDate, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsService.findSongsMatchingAll(SongDTO probe, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsServiceImpl.findSongsMatchingAll(SongDTO probeDTO, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsService.getSongs(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsServiceImpl.getSongs(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> Methods in info.ejava.examples.db.jpa.songs.svc with parameters of type SongDTOModifier and TypeMethodDescriptionSongsService.createSong(SongDTO songDTO) SongsServiceImpl.createSong(SongDTO songDTO) org.springframework.data.domain.Page<SongDTO> SongsService.findSongsMatchingAll(SongDTO probe, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> SongsServiceImpl.findSongsMatchingAll(SongDTO probeDTO, org.springframework.data.domain.Pageable pageable) voidSongsService.updateSong(int id, SongDTO songDTO) voidSongsServiceImpl.updateSong(int id, SongDTO songDTO) Method parameters in info.ejava.examples.db.jpa.songs.svc with type arguments of type SongDTO