All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jsone_studios.wrapper.spotify.authentication.Scope Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy