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

leap.oauth2.rs.auth.ResAuthentication Maven / Gradle / Ivy

There is a newer version: 0.7.13b
Show newest version
package leap.oauth2.rs.auth;

import leap.oauth2.rs.token.ResAccessToken;
import leap.core.security.Authentication;

public interface ResAuthentication extends Authentication {

    /**
     * The credentials must be the type of {@link ResAccessToken}.
     */
    ResAccessToken getCredentials();

    /**
     * Returns the granted scopes.
     */
    default String[] getGrantedScope() {
        return null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy