
co.fusionx.spotify.component.AlbumComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api Show documentation
Show all versions of spotify-web-api Show documentation
Library which allows easy async and sync access to the Spotify Web APIs
The newest version!
package co.fusionx.spotify.component;
import java.util.Collection;
import java.util.List;
import co.fusionx.spotify.model.Album;
import co.fusionx.spotify.model.PagingObject;
import co.fusionx.spotify.model.SimpleTrack;
import co.fusionx.spotify.optional.artist.OptionalAlbumTracks;
public interface AlbumComponent {
public Album getAlbum(final String albumId);
public List extends Album> getAlbums(final Collection albumIds);
public PagingObject extends SimpleTrack> getAlbumTracks(final String albumId);
public PagingObject extends SimpleTrack> getAlbumTracks(String albumId,
OptionalAlbumTracks tracks);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy