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
-
Method Summary
Modifier and TypeMethodDescriptionstatic JwtClaimsSet.Builder
builder()
Returns a newJwtClaimsSet.Builder
.static JwtClaimsSet.Builder
from
(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, wait
Methods inherited from interface org.springframework.security.oauth2.core.ClaimAccessor
getClaim, getClaimAsBoolean, getClaimAsInstant, getClaimAsMap, getClaimAsString, getClaimAsStringList, getClaimAsURL, hasClaim
Methods inherited from interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
getAudience, getExpiresAt, getId, getIssuedAt, getIssuer, getNotBefore, getSubject
-
Method Details
-
getClaims
Description copied from interface:ClaimAccessor
Returns a set of claims that may be used for assertions.- Specified by:
getClaims
in interfaceClaimAccessor
- Returns:
- a
Map
of 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
-