Package de.jsone_studios.wrapper.spotify
Interface SpotifyApi
-
- All Known Implementing Classes:
AuthenticatedSpotifyApi,SpotifyWebApi
public interface SpotifyApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <T> retrofit2.Response<T>callApi(retrofit2.Call<T> call)default <T> TcallApiAndReturnBody(retrofit2.Call<T> call)AlbumsSpotifyServicegetAlbumsService()ArtistsSpotifyServicegetArtistsService()default <T> TgetBody(retrofit2.Response<T> response)BrowseSpotifyServicegetBrowseService()default ErrorDetailsgetErrorBody(retrofit2.Response<?> response)default ErrorDetailsgetErrorDetailsFromResponse(retrofit2.Response<?> response)FollowSpotifyServicegetFollowService()LibrarySpotifyServicegetLibraryService()PersonalizationSpotifyServicegetPersonalizationService()PlaylistsSpotifyServicegetPlaylistsService()PlaylistTracksSpotifyServicegetPlaylistTracksService()retrofit2.RetrofitgetRetrofit()SearchSpotifyServicegetSearchService()TracksSpotifyServicegetTracksService()UsersProfileSpotifyServicegetUsersProfileService()
-
-
-
Method Detail
-
callApiAndReturnBody
default <T> T callApiAndReturnBody(retrofit2.Call<T> call) throws SpotifyApiException- Throws:
SpotifyApiException
-
callApi
default <T> retrofit2.Response<T> callApi(retrofit2.Call<T> call) throws SpotifyApiException- Throws:
SpotifyApiException
-
getBody
default <T> T getBody(retrofit2.Response<T> response) throws SpotifyApiException- Throws:
SpotifyApiException
-
getErrorBody
default ErrorDetails getErrorBody(retrofit2.Response<?> response) throws SpotifyApiException
- Throws:
SpotifyApiException
-
getErrorDetailsFromResponse
default ErrorDetails getErrorDetailsFromResponse(retrofit2.Response<?> response)
-
getRetrofit
retrofit2.Retrofit getRetrofit()
-
getAlbumsService
AlbumsSpotifyService getAlbumsService()
-
getArtistsService
ArtistsSpotifyService getArtistsService()
-
getBrowseService
BrowseSpotifyService getBrowseService()
-
getFollowService
FollowSpotifyService getFollowService()
-
getLibraryService
LibrarySpotifyService getLibraryService()
-
getPersonalizationService
PersonalizationSpotifyService getPersonalizationService()
-
getPlaylistsService
PlaylistsSpotifyService getPlaylistsService()
-
getPlaylistTracksService
PlaylistTracksSpotifyService getPlaylistTracksService()
-
getSearchService
SearchSpotifyService getSearchService()
-
getTracksService
TracksSpotifyService getTracksService()
-
getUsersProfileService
UsersProfileSpotifyService getUsersProfileService()
-
-