Class JwtClaimsSet
java.lang.Object
org.springframework.security.oauth2.jwt.JwtClaimsSet
- All Implemented Interfaces:
 ClaimAccessor,JwtClaimAccessor
The 
JWT Claims Set is a JSON object representing the claims conveyed by a
 JSON Web Token.- Since:
 - 5.6
 - See Also:
 
- 
Nested Class Summary
Nested Classes - 
Method Summary
Modifier and TypeMethodDescriptionstatic JwtClaimsSet.Builderbuilder()Returns a newJwtClaimsSet.Builder.static JwtClaimsSet.Builderfrom(JwtClaimsSet claims) Returns a newJwtClaimsSet.Builder, initialized with the providedclaims.Returns a set of claims that may be used for assertions.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.security.oauth2.core.ClaimAccessor
getClaim, getClaimAsBoolean, getClaimAsInstant, getClaimAsMap, getClaimAsString, getClaimAsStringList, getClaimAsURL, hasClaimMethods inherited from interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
getAudience, getExpiresAt, getId, getIssuedAt, getIssuer, getNotBefore, getSubject 
- 
Method Details
- 
getClaims
Description copied from interface:ClaimAccessorReturns a set of claims that may be used for assertions.- Specified by:
 getClaimsin interfaceClaimAccessor- Returns:
 - a 
Mapof claims 
 - 
builder
Returns a newJwtClaimsSet.Builder.- Returns:
 - the 
JwtClaimsSet.Builder 
 - 
from
Returns a newJwtClaimsSet.Builder, initialized with the providedclaims.- Parameters:
 claims- a JWT claims set- Returns:
 - the 
JwtClaimsSet.Builder 
 
 -