Interface SongsService
- All Known Implementing Classes:
SongsServiceImpl
public interface SongsService
-
Method Summary
Modifier and TypeMethodDescriptioncreateSong(SongDTO songDTO) voidvoiddeleteSong(int id) org.springframework.data.domain.Page<SongDTO> findReleasedAfter(LocalDate exclusive, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<SongDTO> findSongsMatchingAll(SongDTO probe, org.springframework.data.domain.Pageable pageable) getSong(int id) org.springframework.data.domain.Page<SongDTO> getSongs(org.springframework.data.domain.Pageable pageable) voidupdateSong(int id, SongDTO songDTO)
-
Method Details