Uses of Class
com.nimbusds.oauth2.sdk.token.TokenTypeURI
-
Packages that use TokenTypeURI Package Description 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 TokenTypeURI in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as TokenTypeURI Modifier and Type Field Description static TokenTypeURITokenTypeURI. ACCESS_TOKENThe token type URI for an OAuth 2.0 access token.static TokenTypeURITokenTypeURI. ID_TOKENThe token type URI for an OpenID Connect ID Token.static TokenTypeURITokenTypeURI. JWTThe token type URI for a JSON Web Token (JWT).static TokenTypeURITokenTypeURI. REFRESH_TOKENThe token type URI for an OAuth 2.0 refresh token.static TokenTypeURITokenTypeURI. SAML1The token type URI for a BASE64URL-encoded SAML 1.1 assertion.static TokenTypeURITokenTypeURI. SAML2The token type URI for a BASE64URL-encoded SAML 2.0 assertion.Methods in com.nimbusds.oauth2.sdk.token that return TokenTypeURI Modifier and Type Method Description TokenTypeURIAccessToken. getIssuedTokenType()Returns the identifier URI for the type of this access token.static TokenTypeURITokenTypeURI. parse(String uriValue)Parses a token type URI from the specified string.Constructors in com.nimbusds.oauth2.sdk.token with parameters of type TokenTypeURI Constructor Description AccessToken(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 TokenTypeURI Modifier and Type Method Description TokenTypeURITokenExchangeGrant. getActorTokenType()Returns the identifier for the type of the optional actor token, if present.TokenTypeURITokenExchangeGrant. getRequestedTokenType()Returns the optional identifier for the requested type of security token.TokenTypeURITokenExchangeGrant. getSubjectTokenType()Returns the identifier for the type of the subject token.Constructors in com.nimbusds.oauth2.sdk.tokenexchange with parameters of type TokenTypeURI 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.
-