Tag service

getAllTags

TagService.getAllTags()

Get a list of all tags in the database.

getTagsForTrack

TagService.getTagsForTrack(String trackId)

Get a list of all tags for the specified track.

getTagsForPlaylist

TagService.getTagsForPlaylist(String playlistId)

Get a list of all tags for the specified playlist.

getTagsForAlbum

TagService.getTagsForAlbum(String album)

Get a list of all tags for the specified album.

getTagsForArtist

TagService.getTagsForArtist(String artist)

Get a list of all tags for the specified artist.

setTagsToTracks

TagService.setTagsToTracks(String[] trackIds, String[] tags)

Set the specified tags to the specified tracks. Tags are added to existing ones.

removeTagsFromTracks

TagService.removeTagsFromTracks(String[] trackIds, String[] tags)

Remove the specified tags from the specified tracks.

setTagsToTrack

TagService.setTagsToTrack(String trackId, String[] tags)

Set the specified tags to the specified track. Tags are added to existing ones.

removeTagsFromTrack

TagService.removeTagsFromTrack(String trackId, String[] tags)

Remove the specified tags from the specified track.

setTagsToPlaylist

TagService.setTagsToPlaylist(String playlistId, String[] tags)

Set the specified tags to the tracks of the specified playlist. Tags are added to existing ones.

removeTagsFromPlaylist

TagService.removeTagsFromPlaylist(String playlistId, String[] tags)

Remove the specified tags from the tracks of the specified playlist.

setTagsToAlbum

TagService.setTagsToAlbum(String album, String[] tags)

Set the specified tags to the tracks of the specified album. Tags are added to existing ones.

removeTagsFromAlbum

TagService.removeTagsFromAlbum(String album, String[] tags)

Remove the specified tags from the tracks of the specified album.

setTagsToArtist

TagService.setTagsToArtist(String artist, String[] tags)

Set the specified tags to the tracks of the specified artist. Tags are added to existing ones.

removeTagsFromArtist

TagService.removeTagsFromArtist(String artist, String[] tags)

Remove the specified tags from the tracks of the specified artist.