Uses of Class
org.forgerock.json.jose.jwt.JwtClaimsSet
Package
Description
Classes and interfaces for builder to build JWTs using a fluent API.
Classes and interfaces for JWT encryption and JWEs.
Classes and interfaces for JWT signing and JWS'.
Classes and interfaces for JWTs.
This package contains the components used to implement some JWT related filter.
Integration classes specifically for ForgeRock Access Management.
Common tools used in policy service.
This package contains classes used to perform JWT validation.
-
Uses of JwtClaimsSet in org.forgerock.json.jose.builders
Modifier and TypeMethodDescriptionJwtClaimsSetBuilder.build()
Creates a JwtClaimsSet instance from the claims set in this builder.Modifier and TypeMethodDescriptionAbstractJwtBuilder.claims
(JwtClaimsSet claimsSet) Sets the JwtClaimsSet for this JwtBuilder.EncryptedJwtBuilder.claims
(JwtClaimsSet claimsSet) Sets the JwtClaimsSet for this JwtBuilder.SignedJwtBuilderImpl.claims
(JwtClaimsSet claimsSet) Sets the JwtClaimsSet for this JwtBuilder.SignedThenEncryptedJwtBuilder.claims
(JwtClaimsSet claims) -
Uses of JwtClaimsSet in org.forgerock.json.jose.jwe
Modifier and TypeMethodDescriptionEncryptedJwt.getClaimsSet()
SignedThenEncryptedJwt.getClaimsSet()
ModifierConstructorDescriptionEncryptedJwt
(JweHeader header, JwtClaimsSet payload, Key publicKey) Constructs a fresh, new EncryptedJwt from the given JweHeader and JwtClaimsSet. -
Uses of JwtClaimsSet in org.forgerock.json.jose.jws
Modifier and TypeMethodDescriptionEncryptedThenSignedJwt.getClaimsSet()
Gets the claims set object for the nested Encrypted JWT that is the payload of this JWS.SignedJwt.getClaimsSet()
Gets the claims set object for the Jwt, which contains all of the claims (name value pairs) conveyed by the JWT.ModifierConstructorDescriptionSignedJwt
(JwsHeader header, JwtClaimsSet claimsSet, byte[] signingInput, byte[] signature) Constructs a reconstructed SignedJwt from its constituent parts, the JwsHeader, JwtClaimsSet, signing input and signature.SignedJwt
(JwsHeader header, JwtClaimsSet claimsSet, SigningHandler signingHandler) Constructs a fresh, new SignedJwt from the given JwsHeader and JwtClaimsSet. -
Uses of JwtClaimsSet in org.forgerock.json.jose.jwt
Modifier and TypeMethodDescriptionJwtClaimsSet.copy()
Jwt.getClaimsSet()
Gets the claims set object for the Jwt, which contains all of the claims (name value pairs) conveyed by the JWT. -
Uses of JwtClaimsSet in org.forgerock.openig.filter.jwt
Modifier and TypeMethodDescriptionJwtValidationContext.getClaims()
Returns the claims copy as aJwtClaimsSet
. -
Uses of JwtClaimsSet in org.forgerock.openig.openam
ModifierConstructorDescriptionCdSsoContext
(Context parent, String token, JwtClaimsSet claimsSet, String redirectEndpoint, org.forgerock.openig.http.protocol.CookieBuilder cookieBuilder) CreateCdSsoContext
for supplied JWT. -
Uses of JwtClaimsSet in org.forgerock.openig.tools
Modifier and TypeMethodDescriptionJwtUtil.getValue
(JwtClaimsSet claimsSet, JsonPointer ptr) Return a value from it's well-known location on the OAuth2 authorization JWT. -
Uses of JwtClaimsSet in org.forgerock.openig.tools.jwt.validation
Modifier and TypeMethodDescriptionJwtValidator.Builder.claimSet
(String key, Function<Optional<JwtClaimsSet>, Optional<T>> adapter, JwtClaimConstraint<T> jwtClaimConstraint) Deprecated.since 2024.3.0, with OPENIG-8029.JwtValidator.Builder.claimSet
(String key, Function<Optional<JwtClaimsSet>, Optional<T>> adapter, JwtClaimConstraint<T> jwtClaimConstraint, boolean optional) Adds aJwtClaimConstraint
on the claimSet.