Package com.adobe.granite.auth.oauth
Interface AccessTokenProviderConstants
-
@ProviderType public interface AccessTokenProviderConstants
Constants related toAccessTokenProviderproviders andAccessTokenRequestCustomizercustomizers.- Since:
- 3.6
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringASSERTIONassertion as in rfc7523static java.lang.StringCLIENT_IDclient_id as in rfc7523static java.lang.StringCONTEXT_HEADERSThe key name to reference the default headers in a request context.static java.lang.StringCONTEXT_JWTThe key name to reference a JWT in a request context.static java.lang.StringCONTEXT_PARAMETERSThe key name to reference the default parameters in a request context.static java.lang.StringCONTEXT_URIThe key name to reference the URI used to obtain an access token in a request context.static java.lang.StringGRANT_TYPEgrant_type as in rfc7523static java.lang.StringSCOPEscope as in rfc7523
-
-
-
Field Detail
-
CONTEXT_JWT
static final java.lang.String CONTEXT_JWT
The key name to reference a JWT in a request context.The value referenced is of type
Stringand consists of a JSON Web Token.
-
CONTEXT_URI
static final java.lang.String CONTEXT_URI
The key name to reference the URI used to obtain an access token in a request context.The value referenced is of type
Stringand consists of a URI.
-
CONTEXT_PARAMETERS
static final java.lang.String CONTEXT_PARAMETERS
The key name to reference the default parameters in a request context.The value referenced is of type
Map<String,String>.
-
CONTEXT_HEADERS
static final java.lang.String CONTEXT_HEADERS
The key name to reference the default headers in a request context.The value referenced is of type
Map<String,List<String>>.
-
GRANT_TYPE
static final java.lang.String GRANT_TYPE
grant_type as in rfc7523- See Also:
- Constant Field Values
-
CLIENT_ID
static final java.lang.String CLIENT_ID
client_id as in rfc7523- See Also:
- Constant Field Values
-
SCOPE
static final java.lang.String SCOPE
scope as in rfc7523- See Also:
- Constant Field Values
-
ASSERTION
static final java.lang.String ASSERTION
assertion as in rfc7523- See Also:
- Constant Field Values
-
-