public interface Album
An internal album that is stored in a database. The implementation of this is service provider-dependent.
-
Method Details
-
getId
String getId()The unique ID of the album. This means different things for each implementation.- Returns:
- The unique ID of the album
-
getName
-
getArtist
Artist getArtist()The primary artist that made this album.- Returns:
- The primary artist that made this album
-
getArtists
-
getServiceProvider
Optional<ServiceProvider> getServiceProvider()The service provider that this album is from.- Returns:
- The service provider that this album is from
-