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

de.jsone_studios.wrapper.spotify.AuthenticationProvider Maven / Gradle / Ivy

The newest version!
package de.jsone_studios.wrapper.spotify;

import de.jsone_studios.wrapper.spotify.models.AuthTokens;

public interface AuthenticationProvider {
    String getAccessToken();

    String getRefreshToken();

    String getClientId();

    String getClientSecret();

    void onNewAuthTokens(AuthTokens authTokens);

    void onErrorGettingAuthTokens(SpotifyApiException exception);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy