Uses of Interface
org.forgerock.oauth2.core.Token
-
Packages that use Token Package Description org.forgerock.oauth2.core Defines the core classes to implement OAuth2 for OpenAM.org.forgerock.openam.oauth2.token.macaroon Functionality for issuing access and refresh token asMacaroon
s. -
-
Uses of Token in org.forgerock.oauth2.core
Subinterfaces of Token in org.forgerock.oauth2.core Modifier and Type Interface Description interface
AccessToken
Models an OAuth2 access token.interface
IntrospectableToken
An OAuth 2.0 token abstraction for introspection.Methods in org.forgerock.oauth2.core with type parameters of type Token Modifier and Type Method Description <T extends Token>
TOAuth2Request. getToken(Class<T> tokenClass)
Get a Token that is in play for this request.<T extends Token>
voidOAuth2Request. setToken(Class<T> tokenClass, T token)
Set a Token that is in play for this request.Methods in org.forgerock.oauth2.core that return types with arguments of type Token Modifier and Type Method Description Collection<Token>
OAuth2Request. getTokens()
Get all the tokens that have been used in this request.Map.Entry<String,Token>
ResponseTypeHandler. handle(String tokenType, Set<String> scope, org.forgerock.oauth2.core.ResourceOwner resourceOwner, String clientId, String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod)
Handles the creating of a Token instance and storing the Token in the OAuth2 providerTokenStore
.Method parameters in org.forgerock.oauth2.core with type arguments of type Token Modifier and Type Method Description Map<String,String>
ScopeValidator. additionalDataToReturnFromAuthorizeEndpoint(Map<String,Token> tokens, OAuth2Request request)
Provided as an extension point to allow the OAuth2 provider to return additional data from an authorization request. -
Uses of Token in org.forgerock.openam.oauth2.token.macaroon
Classes in org.forgerock.openam.oauth2.token.macaroon that implement Token Modifier and Type Class Description class
MacaroonToken<T extends IntrospectableToken>
An OAuth2 access or refresh token that is represented as aMacaroon
.
-