Uses of Class
com.nimbusds.oauth2.sdk.token.AccessTokenType
Packages that use AccessTokenType
Package
Description
Classes for representing, serialising and parsing core OAuth 2.0 concepts.
OAuth 2.0 access and refresh token implementations.
-
Uses of AccessTokenType in com.nimbusds.oauth2.sdk
Methods in com.nimbusds.oauth2.sdk that return AccessTokenTypeModifier and TypeMethodDescriptionTokenIntrospectionSuccessResponse.getTokenType()Returns the access token type.Methods in com.nimbusds.oauth2.sdk with parameters of type AccessTokenTypeModifier and TypeMethodDescriptionTokenIntrospectionSuccessResponse.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 AccessTokenTypeModifier and TypeFieldDescriptionstatic final AccessTokenTypeAccessTokenType.BEARERBearer, see OAuth 2.0 Bearer Token Usage (RFC 6750).static final AccessTokenTypeAccessTokenType.DPOPDPoP, see OAuth 2.0 Demonstrating Proof-of-Possession at the Application Layer (DPoP) (draft-ietf-oauth-dpop-11).static final AccessTokenTypeAccessTokenType.MACMAC, see OAuth 2.0 Message Authentication Code (MAC) Tokens (draft-ietf-oauth-v2-http-mac-05).static final AccessTokenTypeAccessTokenType.N_ANot applicable (N/A), see OAuth 2.0 Token Exchange (RFC 8693).static final AccessTokenTypeAccessTokenType.UNKNOWNUnknown.Methods in com.nimbusds.oauth2.sdk.token that return AccessTokenTypeModifier and TypeMethodDescriptionTokenSchemeError.getScheme()Returns the token scheme.AccessToken.getType()Returns the access token type.Methods in com.nimbusds.oauth2.sdk.token with parameters of type AccessTokenTypeModifier and TypeMethodDescriptionstatic 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 AccessTokenTypeModifierConstructorDescriptionAccessToken(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.protectedTokenSchemeError(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.