Interface OAuth2TokenIntrospectionClaimNames
-
public interface OAuth2TokenIntrospectionClaimNamesThe names of the "Introspection Claims" defined by an Introspection Response.- Since:
- 5.6
- See Also:
- OAuth 2.0 Token Introspection (RFC7662), OAuth Parameters (IANA)
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringACTIVEactive- Indicator whether or not the token is currently activestatic java.lang.StringAUDaud- The intended audience for the tokenstatic java.lang.StringCLIENT_IDclient_id- The Client identifier for the tokenstatic java.lang.StringEXPexp- A timestamp indicating when the token expiresstatic java.lang.StringIATiat- A timestamp indicating when the token was issuedstatic java.lang.StringISSiss- The issuer of the tokenstatic java.lang.StringJTIjti- The identifier for the tokenstatic java.lang.StringNBFnbf- A timestamp indicating when the token is not to be used beforestatic java.lang.StringSCOPEscope- The scopes for the tokenstatic java.lang.StringSUBsub- 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
-
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
-
CLIENT_ID
static final java.lang.String CLIENT_ID
client_id- The Client identifier for the token- See Also:
- Constant Field Values
-
SCOPE
static final java.lang.String SCOPE
scope- The scopes for 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
-
EXP
static final java.lang.String EXP
exp- A timestamp indicating when the token expires- See Also:
- Constant Field Values
-
IAT
static final java.lang.String IAT
iat- A timestamp indicating when the token was issued- See Also:
- Constant Field Values
-
NBF
static final java.lang.String NBF
nbf- A timestamp indicating when the token is not to be used before- See Also:
- Constant Field Values
-
SUB
static final java.lang.String SUB
sub- Usually a machine-readable identifier of the resource owner who authorized the token- See Also:
- Constant Field Values
-
AUD
static final java.lang.String AUD
aud- The intended audience for the token- See Also:
- Constant Field Values
-
ISS
static final java.lang.String ISS
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
-
-