Uses of Class
org.eclipse.microprofile.jwt.Claims
-
Packages that use Claims Package Description org.eclipse.microprofile.jwt Interoperable JWT RBAC for Microprofile -
-
Uses of Claims in org.eclipse.microprofile.jwt
Methods in org.eclipse.microprofile.jwt that return Claims Modifier and Type Method Description Claims
standard()
An alternate way of specifying a claim name using the Claims enumClaims
ClaimLiteral. standard()
static Claims
Claims. valueOf(String name)
Returns the enum constant of this type with the specified name.static Claims[]
Claims. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.microprofile.jwt with parameters of type Claims Modifier and Type Method Description default <T> Optional<T>
JsonWebToken. claim(Claims claim)
A utility method to access a claim value in an Optional wrapperdefault <T> T
JsonWebToken. getClaim(Claims claim)
Access the value of the indicated claim.Constructors in org.eclipse.microprofile.jwt with parameters of type Claims Constructor Description ClaimLiteral(Claims standard)
Construct a Claim literal from a standard claim defined in Claims
-