Package web5.sdk.jose.jwt
Class JwtClaimsSet
-
- All Implemented Interfaces:
public final class JwtClaimsSetClaims represents JWT (JSON Web Token) Claims Spec: https://datatracker.ietf.org/doc/html/rfc7519#section-4
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classJwtClaimsSet.BuilderBuilder for JwtClaimsSet.
-
Method Summary
Modifier and Type Method Description final StringgetIss()identifies the principal that issued the final StringgetSub()the principal that is the subject of the JWT. final StringgetAud()the recipients that the JWT is intended for. final LonggetExp()the expiration time on or after which the JWT must not be accepted for processing. final LonggetNbf()the time before which the JWT must not be accepted for processing. final LonggetIat()the time at which the JWT was issued. final StringgetJti()provides a unique identifier for the JWT. final Map<String, Object>getMisc()additional claims (i.e. StringtoString()
-