Interface OAuth2IntrospectionClaimNames
-
public interface OAuth2IntrospectionClaimNamesThe names of the "Introspection Claims" defined by an Introspection Response.- Since:
- 5.2
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACTIVEactive- Indicator whether or not the token is currently activestatic java.lang.StringAUDIENCEaud- The intended audience for the tokenstatic java.lang.StringCLIENT_IDclient_id- The Client identifier for the tokenstatic java.lang.StringEXPIRES_ATexp- A timestamp indicating when the token expiresstatic java.lang.StringISSUED_ATiat- A timestamp indicating when the token was issuedstatic java.lang.StringISSUERiss- The issuer of the tokenstatic java.lang.StringJTIjti- The identifier for the tokenstatic java.lang.StringNOT_BEFOREnbf- A timestamp indicating when the token is not to be used beforestatic java.lang.StringSCOPEscope- The scopes for the tokenstatic java.lang.StringSUBJECTsub- Usually a machine-readable identifier of the resource owner who authorized the tokenstatic java.lang.StringTOKEN_TYPEtoken_type- The type of the token, for examplebearer.static java.lang.StringUSERNAMEusername- A human-readable identifier for the resource owner that authorized the token
-
-
-
Field Detail
-
ACTIVE
static final java.lang.String ACTIVE
active- Indicator whether or not the token is currently active- See Also:
- Constant Field Values
-
SCOPE
static final java.lang.String SCOPE
scope- The scopes for the token- See Also:
- Constant Field Values
-
CLIENT_ID
static final java.lang.String CLIENT_ID
client_id- The Client identifier for the token- See Also:
- Constant Field Values
-
USERNAME
static final java.lang.String USERNAME
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
token_type- The type of the token, for examplebearer.- See Also:
- Constant Field Values
-
EXPIRES_AT
static final java.lang.String EXPIRES_AT
exp- A timestamp indicating when the token expires- See Also:
- Constant Field Values
-
ISSUED_AT
static final java.lang.String ISSUED_AT
iat- A timestamp indicating when the token was issued- See Also:
- Constant Field Values
-
NOT_BEFORE
static final java.lang.String NOT_BEFORE
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
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
aud- The intended audience for the token- See Also:
- Constant Field Values
-
ISSUER
static final java.lang.String ISSUER
iss- The issuer of the token- See Also:
- Constant Field Values
-
JTI
static final java.lang.String JTI
jti- The identifier for the token- See Also:
- Constant Field Values
-
-