Interface OAuth2IntrospectionClaimNames
-
public interface OAuth2IntrospectionClaimNamesDeprecated.UseOAuth2TokenIntrospectionClaimNamesinsteadThe names of the "Introspection Claims" defined by an Introspection Response.- Since:
- 5.2
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACTIVEDeprecated.active- Indicator whether or not the token is currently activestatic java.lang.StringAUDIENCEDeprecated.aud- The intended audience for the tokenstatic java.lang.StringCLIENT_IDDeprecated.client_id- The Client identifier for the tokenstatic java.lang.StringEXPIRES_ATDeprecated.exp- A timestamp indicating when the token expiresstatic java.lang.StringISSUED_ATDeprecated.iat- A timestamp indicating when the token was issuedstatic java.lang.StringISSUERDeprecated.iss- The issuer of the tokenstatic java.lang.StringJTIDeprecated.jti- The identifier for the tokenstatic java.lang.StringNOT_BEFOREDeprecated.nbf- A timestamp indicating when the token is not to be used beforestatic java.lang.StringSCOPEDeprecated.scope- The scopes for the tokenstatic java.lang.StringSUBJECTDeprecated.sub- Usually a machine-readable identifier of the resource owner who authorized the tokenstatic java.lang.StringTOKEN_TYPEDeprecated.token_type- The type of the token, for examplebearer.static java.lang.StringUSERNAMEDeprecated.username- A human-readable identifier for the resource owner that authorized the token
-
-
-
Field Detail
-
ACTIVE
static final java.lang.String ACTIVE
Deprecated.active- Indicator whether or not the token is currently active- See Also:
- Constant Field Values
-
SCOPE
static final java.lang.String SCOPE
Deprecated.scope- The scopes for the token- See Also:
- Constant Field Values
-
CLIENT_ID
static final java.lang.String CLIENT_ID
Deprecated.client_id- The Client identifier for the token- See Also:
- Constant Field Values
-
USERNAME
static final java.lang.String USERNAME
Deprecated.username- A human-readable identifier for the resource owner that authorized the token- See Also:
- Constant Field Values
-
TOKEN_TYPE
static final java.lang.String TOKEN_TYPE
Deprecated.token_type- The type of the token, for examplebearer.- See Also:
- Constant Field Values
-
EXPIRES_AT
static final java.lang.String EXPIRES_AT
Deprecated.exp- A timestamp indicating when the token expires- See Also:
- Constant Field Values
-
ISSUED_AT
static final java.lang.String ISSUED_AT
Deprecated.iat- A timestamp indicating when the token was issued- See Also:
- Constant Field Values
-
NOT_BEFORE
static final java.lang.String NOT_BEFORE
Deprecated.nbf- A timestamp indicating when the token is not to be used before- See Also:
- Constant Field Values
-
SUBJECT
static final java.lang.String SUBJECT
Deprecated.sub- Usually a machine-readable identifier of the resource owner who authorized the token- See Also:
- Constant Field Values
-
AUDIENCE
static final java.lang.String AUDIENCE
Deprecated.aud- The intended audience for the token- See Also:
- Constant Field Values
-
ISSUER
static final java.lang.String ISSUER
Deprecated.iss- The issuer of the token- See Also:
- Constant Field Values
-
JTI
static final java.lang.String JTI
Deprecated.jti- The identifier for the token- See Also:
- Constant Field Values
-
-