Interface SongsService
- All Known Implementing Classes:
SongsServiceImpl
public interface SongsService
-
Method Summary
Modifier and TypeMethodDescriptioncreateSong
(SongDTO songDTO) void
void
deleteSong
(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) void
updateSong
(int id, SongDTO songDTO)
-
Method Details