Package com.blueriq.component.api.oauth2
Interface Oauth2AccessTokenProviderParameters
public interface Oauth2AccessTokenProviderParameters
This interface defines the parameters that can be used to obtain an access token from an
Oauth2AccessTokenProvider
.
All of these properties are explained in the OAuth2 specification.-
Method Summary
-
Method Details
-
getTokenEndpoint
String getTokenEndpoint()- Returns:
- The token endpoint where the token can be requested.
-
getClientId
String getClientId()- Returns:
- The client id to obtain the access token for.
-
getClientSecret
String getClientSecret()- Returns:
- The client secret used to request an access token.
-
getGrantType
String getGrantType()- Returns:
- The grant type that the token needs to be requested for.
-
getScope
String getScope()- Returns:
- The scope that the token needs to be requested for.
-