JsonWebToken.Payload |
JsonWebToken.Payload.clone() |
|
JsonWebToken.Payload |
JsonWebToken.getPayload() |
Returns the payload.
|
JsonWebToken.Payload |
JsonWebToken.Payload.set(String fieldName,
Object value) |
|
JsonWebToken.Payload |
JsonWebToken.Payload.setAudience(Object audience) |
Sets the audience claim that identifies the audience that the JWT is intended for (should
either be a String or a List<String>) or null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setExpirationTimeSeconds(Long expirationTimeSeconds) |
Sets the expiration time claim that identifies the expiration time (in seconds) on or after
which the token MUST NOT be accepted for processing or null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setIssuedAtTimeSeconds(Long issuedAtTimeSeconds) |
Sets the issued at claim that identifies the time (in seconds) at which the JWT was issued or
null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setIssuer(String issuer) |
Sets the issuer claim that identifies the principal that issued the JWT or null for
none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setJwtId(String jwtId) |
Sets the JWT ID claim that provides a unique identifier for the JWT or null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setNotBeforeTimeSeconds(Long notBeforeTimeSeconds) |
Sets the not before claim that identifies the time (in seconds) before which the token MUST
NOT be accepted for processing or null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setSubject(String subject) |
Sets the subject claim identifying the principal that is the subject of the JWT or
null for none.
|
JsonWebToken.Payload |
JsonWebToken.Payload.setType(String type) |
Sets the type claim that is used to declare a type for the contents of this JWT Claims Set or
null for none.
|