Package com.adobe.granite.auth.oauth
Interface AccessTokenProviderConstants
-
@ProviderType public interface AccessTokenProviderConstants
Constants related toAccessTokenProvider
providers andAccessTokenRequestCustomizer
customizers.- Since:
- 3.6
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ASSERTION
assertion as in rfc7523static java.lang.String
CLIENT_ID
client_id as in rfc7523static java.lang.String
CONTEXT_HEADERS
The key name to reference the default headers in a request context.static java.lang.String
CONTEXT_JWT
The key name to reference a JWT in a request context.static java.lang.String
CONTEXT_PARAMETERS
The key name to reference the default parameters in a request context.static java.lang.String
CONTEXT_URI
The key name to reference the URI used to obtain an access token in a request context.static java.lang.String
GRANT_TYPE
grant_type as in rfc7523static java.lang.String
SCOPE
scope 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
String
and 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
String
and 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
-
-