Uses of Class
org.forgerock.json.jose.jwt.JwtClaimsSet
Package
Description
This package contains classes for the Jwt Session JASPI Authentication Module.
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.
OpenID Connect ForgeRock Client Implementation.
-
Uses of JwtClaimsSet in org.forgerock.jaspi.modules.session.jwt
Modifier and TypeMethodDescriptionAuthenticatedEncryptionCryptographyHandler.buildJwt
(JwtBuilderFactory jwtBuilderFactory, JwtClaimsSet claimsSet) FallbackJwtCryptographyHandler.buildJwt
(JwtBuilderFactory jwtBuilderFactory, JwtClaimsSet claimsSet) default String
JwtCryptographyHandler.buildJwt
(JwtBuilderFactory jwtBuilderFactory, JwtClaimsSet claimsSet) Builds a JWT with the given claims set.AuthenticatedEncryptionCryptographyHandler.buildJwtAsync
(JwtBuilderFactory jwtBuilderFactory, JwtClaimsSet claimsSet) default Promise<String,
NoSuchSecretException> JwtCryptographyHandler.buildJwtAsync
(JwtBuilderFactory jwtBuilderFactory, JwtClaimsSet claimsSet) Builds a JWT with the given claims set. -
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.oauth.clients.oidc
Modifier and TypeMethodDescriptionOpenIDConnectSessionInfo.getClaimSet()
Returns the claims set associated with a user session.protected final JwtClaimsSet
OpenIDConnectClient.getJwtClaimsSet
(DataStore dataStore) Retrieves the claims set from the data store.OpenIDConnectUserInfo.getJwtClaimsSet()
Gets the claim set from the jwt id token that was returned by auth server.Modifier and TypeMethodDescriptionprotected final UserInfo
OpenIDConnectClient.createUserInfoFromIdTokenJwtClaims
(JwtClaimsSet jwtClaims) Creates anOpenIDConnectUserInfo
object from id_token jwt Claims.protected static final JsonValue
OpenIDConnectClient.jwtClaimsAsJsonValue
(JwtClaimsSet jwtClaims) Returns the jwt claims as aJsonValue
.protected final Function<JsonValue,
UserInfo, OAuthException> OpenIDConnectClient.mapToUserInfo
(JwtClaimsSet jwtClaims) Maps a retrieved raw profile from the user info endpoint to anOpenIDConnectUserInfo
object.ModifierConstructorDescriptionOpenIDConnectSessionInfo
(Clock clock, DataStore dataStore, JwtClaimsSet jwtClaimsSet) Constructs a OpenIDConnectSessionInfo object.OpenIDConnectUserInfo
(JsonValue rawProfile, JwtClaimsSet jwtClaimsSet) Creates an OpenIDConnectUserInfo instance.