de.jsone_studios.wrapper.spotify.authentication.Scope Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-web-api-java Show documentation
Show all versions of spotify-web-api-java Show documentation
A Java wrapper for Spotify's Web API using Retrofit
The newest version!
package de.jsone_studios.wrapper.spotify.authentication;
public enum Scope
{
PLAYLIST_READ_PRIVATE("playlist-read-private"),
PLAYLIST_READ_COLLABORATIVE("playlist-read-collaborative"),
PLAYLIST_MODIFY_PUBLIC("playlist-modify-public"),
PLAYLIST_MODIFY_PRIVATE("playlist-modify-private"),
STREAMING("streaming"),
UGC_IMAGE_UPLOAD("ugc-image-upload"),
USER_FOLLOW_MODIFY("user-follow-modify"),
USER_FOLLOW_READ("user-follow-read"),
USER_LIBRARY_READ("user-library-read"),
USER_LIBRARY_MODIFY("user-library-modify"),
USER_READ_PRIVATE("user-read-private"),
USER_READ_BIRTHDAY("user-read-birthday"),
USER_READ_EMAIL("user-read-email"),
USER_TOP_READ("user-top-read"),
USER_READ_PLAYBACK_STATE("user-read-playback-state"),
USER_MODIFY_PLAYBACK_STATE("user-modify-playback-state"),
USER_READ_CURRENTLY_PLAYING("user-read-currently-playing"),
USER_READ_RECENTLY_PLAYED("user-read-recently-played");
private String scope;
Scope(String scope)
{
this.scope = scope;
}
public String getScope()
{
return scope;
}
}