- getAudience() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Audience (aud) claim which identifies the recipient(s)
that the JWT is intended for.
- getClaims() - Method in class org.springframework.security.oauth2.jwt.Jwt
-
Returns the JWT Claims Set.
- getExpiresAt() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Expiration time (exp) claim which identifies the expiration time
on or after which the JWT MUST NOT be accepted for processing.
- getHeaders() - Method in class org.springframework.security.oauth2.jwt.Jwt
-
Returns the JOSE header(s).
- getId() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the JWT ID (jti) claim which provides a unique identifier for the JWT.
- getIssuedAt() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Issued at (iat) claim which identifies the time at which the JWT was issued.
- getIssuer() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Issuer (iss) claim which identifies the principal that issued the JWT.
- getNotBefore() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Not Before (nbf) claim which identifies the time
before which the JWT MUST NOT be accepted for processing.
- getSubject() - Method in interface org.springframework.security.oauth2.jwt.JwtClaimAccessor
-
Returns the Subject (sub) claim which identifies the principal
that is the subject of the JWT.