Uses of Class
com.nimbusds.oauth2.sdk.token.Token
Packages that use Token
Package
Description
Classes for representing, serialising and parsing core OAuth 2.0 concepts.
OAuth 2.0 access and refresh token implementations.
OAuth 2.0 token exchange.
-
Uses of Token in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return TokenModifier and TypeMethodDescriptionTokenIntrospectionRequest.getToken()
Returns the token to introspect.TokenRevocationRequest.getToken()
Returns the token to revoke.Constructors in com.nimbusds.oauth2.sdk with parameters of type TokenModifierConstructorDescriptionTokenIntrospectionRequest
(URI uri, ClientAuthentication clientAuth, Token token) Creates a new token introspection request.TokenIntrospectionRequest
(URI uri, ClientAuthentication clientAuth, Token token, Map<String, List<String>> customParams) Creates a new token introspection request.TokenIntrospectionRequest
(URI uri, AccessToken clientAuthz, Token token) Creates a new token introspection request.TokenIntrospectionRequest
(URI uri, AccessToken clientAuthz, Token token, Map<String, List<String>> customParams) Creates a new token introspection request.TokenIntrospectionRequest
(URI uri, Token token) Creates a new token introspection request.Creates a new token introspection request.TokenRevocationRequest
(URI uri, ClientAuthentication clientAuth, Token token) Creates a new token revocation request for a confidential client.TokenRevocationRequest
(URI uri, ClientID clientID, Token token) Creates a new token revocation request for a public client. -
Uses of Token in com.nimbusds.oauth2.sdk.token
Subclasses of Token in com.nimbusds.oauth2.sdk.tokenModifier and TypeClassDescriptionclass
The base abstract class for access tokens.class
Bearer access token.class
DPoP access token.class
Access token of type not applicable (N/A), intended for use in OAuth 2.0 token exchange scenarios.final class
Refresh token.class
Typeless access token, cannot be serialised.class
Typeless (generic) token. -
Uses of Token in com.nimbusds.oauth2.sdk.tokenexchange
Methods in com.nimbusds.oauth2.sdk.tokenexchange that return TokenModifier and TypeMethodDescriptionTokenExchangeGrant.getActorToken()
Returns the optional token representing the identity of the acting party.TokenExchangeGrant.getSubjectToken()
Returns the subject token representing the identity of the party on behalf of whom the request is being made.Constructors in com.nimbusds.oauth2.sdk.tokenexchange with parameters of type TokenModifierConstructorDescriptionTokenExchangeGrant
(Token subjectToken, TokenTypeURI subjectTokenType) Creates a new token exchange grant.TokenExchangeGrant
(Token subjectToken, TokenTypeURI subjectTokenType, Token actorToken, TokenTypeURI actorTokenType, TokenTypeURI requestedTokenType, List<Audience> audience) Creates a new token exchange grant.