Uses of Class
com.nimbusds.oauth2.sdk.token.TokenTypeURI
Packages that use TokenTypeURI
Package
Description
OAuth 2.0 access and refresh token implementations.
OAuth 2.0 token exchange.
-
Uses of TokenTypeURI in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as TokenTypeURIModifier and TypeFieldDescriptionstatic final TokenTypeURITokenTypeURI.ACCESS_TOKENThe token type URI for an OAuth 2.0 access token.static final TokenTypeURITokenTypeURI.DEVICE_SECRETThe token type URI for adevice_secretfor OpenID Connect native SSO.static final TokenTypeURITokenTypeURI.ID_TOKENThe token type URI for an OpenID Connect ID Token.static final TokenTypeURITokenTypeURI.JWTThe token type URI for a JSON Web Token (JWT).static final TokenTypeURITokenTypeURI.REFRESH_TOKENThe token type URI for an OAuth 2.0 refresh token.static final TokenTypeURITokenTypeURI.SAML1The token type URI for a BASE64URL-encoded SAML 1.1 assertion.static final TokenTypeURITokenTypeURI.SAML2The token type URI for a BASE64URL-encoded SAML 2.0 assertion.Methods in com.nimbusds.oauth2.sdk.token that return TokenTypeURIModifier and TypeMethodDescriptionAccessToken.getIssuedTokenType()Returns the identifier URI for the type of this access token.static TokenTypeURIParses a token type URI from the specified string.static TokenTypeURIAccessTokenParseUtils.parseIssuedTokenTypeFromJSONObject(net.minidev.json.JSONObject jsonObject) Parses anissued_token_typeparameter from a JSON object.Constructors in com.nimbusds.oauth2.sdk.token with parameters of type TokenTypeURIModifierConstructorDescriptionAccessToken(AccessTokenType type, int byteLength, long lifetime, Scope scope, TokenTypeURI issuedTokenType) Creates a new access token with a randomly generated value of the specified byte length, Base64URL-encoded.AccessToken(AccessTokenType type, int byteLength, long lifetime, Scope scope, List<AuthorizationDetail> authorizationDetails, TokenTypeURI issuedTokenType) Creates a new access token with a randomly generated value of the specified byte length, Base64URL-encoded.AccessToken(AccessTokenType type, String value, long lifetime, Scope scope, TokenTypeURI issuedTokenType) Creates a new access token with the specified value.AccessToken(AccessTokenType type, String value, long lifetime, Scope scope, List<AuthorizationDetail> authorizationDetails, TokenTypeURI issuedTokenType) Creates a new access token with the specified value.BearerAccessToken(String value, long lifetime, Scope scope, TokenTypeURI issuedTokenType) Creates a new bearer access token with the specified value.BearerAccessToken(String value, long lifetime, Scope scope, List<AuthorizationDetail> authorizationDetails, TokenTypeURI issuedTokenType) Creates a new bearer access token with the specified value.DPoPAccessToken(String value, long lifetime, Scope scope, TokenTypeURI issuedTokenType) Creates a new DPoP access token with the specified value.DPoPAccessToken(String value, long lifetime, Scope scope, List<AuthorizationDetail> authorizationDetails, TokenTypeURI issuedTokenType) Creates a new DPoP access token with the specified value.NAAccessToken(String value, long lifetime, Scope scope, TokenTypeURI issuedTokenType) Creates a new N/A access token with the specified value. -
Uses of TokenTypeURI in com.nimbusds.oauth2.sdk.tokenexchange
Methods in com.nimbusds.oauth2.sdk.tokenexchange that return TokenTypeURIModifier and TypeMethodDescriptionTokenExchangeGrant.getActorTokenType()Returns the identifier for the type of the optional actor token, if present.TokenExchangeGrant.getRequestedTokenType()Returns the optional identifier for the requested type of security token.TokenExchangeGrant.getSubjectTokenType()Returns the identifier for the type of the subject token.Constructors in com.nimbusds.oauth2.sdk.tokenexchange with parameters of type TokenTypeURIModifierConstructorDescriptionTokenExchangeGrant(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.