Uses of Class
org.forgerock.json.jose.jwt.JwtClaimsSet
-
Packages that use JwtClaimsSet Package Description org.forgerock.json.jose.builders Classes and interfaces for builder to build JWTs using a fluent API.org.forgerock.json.jose.jwe Classes and interfaces for JWT encryption and JWEs.org.forgerock.json.jose.jws Classes and interfaces for JWT signing and JWS'.org.forgerock.json.jose.jwt Classes and interfaces for JWTs.org.forgerock.openig.filter.jwt This package contains the components used to implement some JWT related filter.org.forgerock.openig.openam Integration classes specifically for ForgeRock Access Management.org.forgerock.openig.tools Common tools used in policy service.org.forgerock.openig.tools.jwt.validation This package contains classes used to perform JWT validation. -
-
Uses of JwtClaimsSet in org.forgerock.json.jose.builders
Methods in org.forgerock.json.jose.builders that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
JwtClaimsSetBuilder. build()
Creates a JwtClaimsSet instance from the claims set in this builder.Methods in org.forgerock.json.jose.builders with parameters of type JwtClaimsSet Modifier and Type Method Description AbstractJwtBuilder
AbstractJwtBuilder. claims(JwtClaimsSet claimsSet)
Sets the JwtClaimsSet for this JwtBuilder.EncryptedJwtBuilder
EncryptedJwtBuilder. claims(JwtClaimsSet claimsSet)
Sets the JwtClaimsSet for this JwtBuilder.SignedJwtBuilderImpl
SignedJwtBuilderImpl. claims(JwtClaimsSet claimsSet)
Sets the JwtClaimsSet for this JwtBuilder.SignedThenEncryptedJwtBuilder
SignedThenEncryptedJwtBuilder. claims(JwtClaimsSet claims)
-
Uses of JwtClaimsSet in org.forgerock.json.jose.jwe
Methods in org.forgerock.json.jose.jwe that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
EncryptedJwt. getClaimsSet()
JwtClaimsSet
SignedThenEncryptedJwt. getClaimsSet()
Constructors in org.forgerock.json.jose.jwe with parameters of type JwtClaimsSet Constructor Description EncryptedJwt(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
Methods in org.forgerock.json.jose.jws that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
EncryptedThenSignedJwt. getClaimsSet()
Gets the claims set object for the nested Encrypted JWT that is the payload of this JWS.JwtClaimsSet
SignedJwt. getClaimsSet()
Gets the claims set object for the Jwt, which contains all of the claims (name value pairs) conveyed by the JWT.Constructors in org.forgerock.json.jose.jws with parameters of type JwtClaimsSet Constructor Description SignedJwt(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
Methods in org.forgerock.json.jose.jwt that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
JwtClaimsSet. copy()
JwtClaimsSet
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
Methods in org.forgerock.openig.filter.jwt that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
JwtValidationContext. getClaims()
Returns the claims copy as aJwtClaimsSet
. -
Uses of JwtClaimsSet in org.forgerock.openig.openam
Methods in org.forgerock.openig.openam that return JwtClaimsSet Modifier and Type Method Description JwtClaimsSet
CdSsoContext. getClaimsSet()
Get a copy of the JWT claims set.Constructors in org.forgerock.openig.openam with parameters of type JwtClaimsSet Constructor Description CdSsoContext(Context parent, String token, JwtClaimsSet claimsSet, String redirectEndpoint, CookieBuilder cookieBuilder)
CreateCdSsoContext
for supplied JWT. -
Uses of JwtClaimsSet in org.forgerock.openig.tools
Methods in org.forgerock.openig.tools with parameters of type JwtClaimsSet Modifier and Type Method Description static Optional<String>
JwtUtil. 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
Method parameters in org.forgerock.openig.tools.jwt.validation with type arguments of type JwtClaimsSet Modifier and Type Method Description <T> JwtValidator.Builder
JwtValidator.Builder. claimSet(String key, Function<Optional<JwtClaimsSet>,Optional<T>> adapter, JwtClaimConstraint<T> jwtClaimConstraint)
Adds aJwtClaimConstraint
on the claimSet.
-