Uses of Class
com.nimbusds.oauth2.sdk.token.Token
-
Packages that use Token Package Description com.nimbusds.oauth2.sdk Classes for representing, serialising and parsing core OAuth 2.0 concepts.com.nimbusds.oauth2.sdk.token OAuth 2.0 access and refresh token implementations.com.nimbusds.oauth2.sdk.tokenexchange OAuth 2.0 token exchange. -
-
Uses of Token in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return Token Modifier and Type Method Description TokenTokenIntrospectionRequest. getToken()Returns the token to introspect.TokenTokenRevocationRequest. getToken()Returns the token to revoke.Constructors in com.nimbusds.oauth2.sdk with parameters of type Token Constructor Description TokenIntrospectionRequest(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.TokenIntrospectionRequest(URI uri, Token token, Map<String,List<String>> customParams)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.token Modifier and Type Class Description classAccessTokenThe base abstract class for access tokens.classBearerAccessTokenBearer access token.classDPoPAccessTokenDPoP access token.classNAAccessTokenAccess token of type not applicable (N/A), intended for use in OAuth 2.0 token exchange scenarios.classRefreshTokenRefresh token.classTypelessAccessTokenTypeless access token, cannot be serialised.classTypelessTokenTypeless (generic) token. -
Uses of Token in com.nimbusds.oauth2.sdk.tokenexchange
Methods in com.nimbusds.oauth2.sdk.tokenexchange that return Token Modifier and Type Method Description TokenTokenExchangeGrant. getActorToken()Returns the optional token representing the identity of the acting party.TokenTokenExchangeGrant. 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 Token Constructor Description TokenExchangeGrant(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.
-