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
Modifier and TypeFieldDescriptionstatic final String
aud
- the Audience claim identifies the recipient(s) that the JWT is intended forstatic final String
exp
- the Expiration time claim identifies the expiration time on or after which the JWT MUST NOT be accepted for processingstatic final String
iat
- The Issued at claim identifies the time at which the JWT was issuedstatic final String
iss
- the Issuer claim identifies the principal that issued the JWTstatic final String
jti
- The JWT ID claim provides a unique identifier for the JWTstatic final String
nbf
- the Not Before claim identifies the time before which the JWT MUST NOT be accepted for processingstatic final String
sub
- 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:
-