Uses of Class
com.nimbusds.oauth2.sdk.token.AccessTokenType
-
Packages that use AccessTokenType 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. -
-
Uses of AccessTokenType in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return AccessTokenType Modifier and Type Method Description AccessTokenTypeTokenIntrospectionSuccessResponse. getTokenType()Returns the access token type.Methods in com.nimbusds.oauth2.sdk with parameters of type AccessTokenType Modifier and Type Method Description TokenIntrospectionSuccessResponse.BuilderTokenIntrospectionSuccessResponse.Builder. tokenType(AccessTokenType tokenType)Sets the token type. -
Uses of AccessTokenType in com.nimbusds.oauth2.sdk.token
Fields in com.nimbusds.oauth2.sdk.token declared as AccessTokenType Modifier and Type Field Description static AccessTokenTypeAccessTokenType. BEARERBearer, see OAuth 2.0 Bearer Token Usage (RFC 6750).static AccessTokenTypeAccessTokenType. DPOPDPoP, see OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP) (draft-ietf-oauth-dpop-11).static AccessTokenTypeAccessTokenType. MACMAC, see OAuth 2.0 Message Authentication Code (MAC) Tokens (draft-ietf-oauth-v2-http-mac-05).static AccessTokenTypeAccessTokenType. N_ANot applicable (N/A), see OAuth 2.0 Token Exchange (RFC 8693).static AccessTokenTypeAccessTokenType. UNKNOWNUnknown.Methods in com.nimbusds.oauth2.sdk.token that return AccessTokenType Modifier and Type Method Description AccessTokenTypeTokenSchemeError. getScheme()Returns the token scheme.AccessTokenTypeAccessToken. getType()Returns the access token type.Methods in com.nimbusds.oauth2.sdk.token with parameters of type AccessTokenType Modifier and Type Method Description static AccessTokenAccessToken. parse(String header, AccessTokenType preferredType)Parses anAuthorizationHTTP request header value for an access token.Constructors in com.nimbusds.oauth2.sdk.token with parameters of type AccessTokenType Constructor Description AccessToken(AccessTokenType type)Creates a new minimal access token with a randomly generated 256-bit (32-byte) value, Base64URL-encoded.AccessToken(AccessTokenType type, int byteLength)Creates a new minimal access token with a randomly generated value of the specified byte length, Base64URL-encoded.AccessToken(AccessTokenType type, int byteLength, long lifetime, Scope scope)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, TokenTypeURI issuedTokenType)Creates a new access token with a randomly generated value of the specified byte length, Base64URL-encoded.AccessToken(AccessTokenType type, long lifetime, Scope scope)Creates a new access token with a randomly generated 256-bit (32-byte) value, Base64URL-encoded.AccessToken(AccessTokenType type, String value)Creates a new minimal access token with the specified value.AccessToken(AccessTokenType type, String value, long lifetime, Scope scope)Creates a new access token with the specified value.AccessToken(AccessTokenType type, String value, long lifetime, Scope scope, TokenTypeURI issuedTokenType)Creates a new access token with the specified value.TokenSchemeError(AccessTokenType scheme, String code, String description, int httpStatusCode, URI uri, String realm, Scope scope)Creates a new token error with the specified code, description, HTTP status code, page URI, realm and scope.
-