RawJwt.Builder |
RawJwt.Builder.addJsonArrayClaim(java.lang.String name,
java.lang.String encodedJsonArray) |
Adds a custom claim encoded in a JSON String to the JWT.
|
RawJwt.Builder |
RawJwt.Builder.addJsonObjectClaim(java.lang.String name,
java.lang.String encodedJsonObject) |
Adds a custom claim encoded in a JSON String to the JWT.
|
java.util.List<java.lang.String> |
VerifiedJwt.getAudiences() |
Returns the aud claim identifying the principals that are the audience of the JWT.
|
java.lang.Boolean |
VerifiedJwt.getBooleanClaim(java.lang.String name) |
Returns the non-registered claim of name name and type Boolean.
|
java.time.Instant |
VerifiedJwt.getExpiration() |
Returns the expiration time claim exp that identifies the instant on or after which the
token MUST NOT be accepted for processing.
|
java.time.Instant |
VerifiedJwt.getIssuedAt() |
Returns the issued at time claim iat that identifies the instant at which the JWT was
issued.
|
java.lang.String |
VerifiedJwt.getIssuer() |
Returns the iss claim that identifies the principal that issued the JWT.
|
java.lang.String |
VerifiedJwt.getJsonArrayClaim(java.lang.String name) |
Returns the non-registered claim of name name and type JSON Array encoded in a string.
|
java.lang.String |
VerifiedJwt.getJsonObjectClaim(java.lang.String name) |
Returns the non-registered claim of name name and type JSON Object encoded in a string.
|
java.lang.String |
VerifiedJwt.getJwtId() |
Returns the jti claim that provides a unique identifier for the JWT.
|
java.time.Instant |
VerifiedJwt.getNotBefore() |
Returns the not before claim nbf that identifies the instant before which the token
MUST NOT be accepted for processing.
|
java.lang.Double |
VerifiedJwt.getNumberClaim(java.lang.String name) |
Returns the non-registered claim of name name and type Number.
|
java.lang.String |
VerifiedJwt.getStringClaim(java.lang.String name) |
Returns the non-registered claim of name name and type String.
|
java.lang.String |
VerifiedJwt.getSubject() |
Returns the sub claim identifying the principal that is the subject of the JWT.
|
java.lang.String |
VerifiedJwt.getTypeHeader() |
Returns the typ header value.
|