Class JwtClaimNames
java.lang.Object
org.springframework.security.oauth2.jwt.JwtClaimNames
The Registered Claim Names defined by the JSON Web Token (JWT) specification that may
be contained in the JSON object JWT Claims Set.
- Since:
- 5.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringaud- the Audience claim identifies the recipient(s) that the JWT is intended for.static final Stringexp- the Expiration time claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing.static final Stringiat- The Issued at claim identifies the time at which the JWT was issued.static final Stringiss- the Issuer claim identifies the principal that issued the JWT.static final Stringjti- The JWT ID claim provides a unique identifier for the JWT.static final Stringnbf- the Not Before claim identifies the time before which the JWT MUST NOT be accepted for processing.static final Stringsub- the Subject claim identifies the principal that is the subject of the JWT. -
Method Summary
-
Field Details
-
ISS
iss- the Issuer claim identifies the principal that issued the JWT.- See Also:
-
SUB
sub- the Subject claim identifies the principal that is the subject of the JWT.- See Also:
-
AUD
aud- the Audience claim identifies the recipient(s) that the JWT is intended for.- See Also:
-
EXP
exp- the Expiration time claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processing.- See Also:
-
NBF
nbf- the Not Before claim identifies the time before which the JWT MUST NOT be accepted for processing.- See Also:
-
IAT
iat- The Issued at claim identifies the time at which the JWT was issued.- See Also:
-
JTI
jti- The JWT ID claim provides a unique identifier for the JWT.- See Also:
-