Uses of Interface
org.forgerock.json.jose.jwt.Jwt
-
Packages that use Jwt Package Description org.forgerock.json.jose.builders Classes and interfaces for builder to build JWTs using a fluent API.org.forgerock.json.jose.common Common classes and interfaces for all types of JWTs.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.tools Common tools used in policy service.org.forgerock.openig.tools.jwt.factory Provides JWT capabilities to the Identity Gateway.org.forgerock.openig.tools.jwt.validation This package contains classes used to perform JWT validation. -
-
Uses of Jwt in org.forgerock.json.jose.builders
Methods in org.forgerock.json.jose.builders with type parameters of type Jwt Modifier and Type Method Description <T extends Jwt>
TJwtBuilderFactory. reconstruct(String jwtString, Class<T> jwtClass)
Reconstructs the given JWT string into a JWT object of the specified type.Methods in org.forgerock.json.jose.builders that return Jwt Modifier and Type Method Description Jwt
JwtBuilder. asJwt()
Builds the JWT object from its constituent parts. -
Uses of Jwt in org.forgerock.json.jose.common
Methods in org.forgerock.json.jose.common with type parameters of type Jwt Modifier and Type Method Description <T extends Jwt>
TJwtReconstruction. reconstructJwt(String jwtString, Class<T> jwtClass)
Reconstructs the given JWT string into a JWT object of the specified type. -
Uses of Jwt in org.forgerock.json.jose.jwe
Classes in org.forgerock.json.jose.jwe that implement Jwt Modifier and Type Class Description class
EncryptedJwt
A JWE implementation of theJwt
interface.class
SignedThenEncryptedJwt
A nested signed-then-encrypted JWT. -
Uses of Jwt in org.forgerock.json.jose.jws
Classes in org.forgerock.json.jose.jws that implement Jwt Modifier and Type Class Description class
EncryptedThenSignedJwt
An implementation of a JWS with a nested JWE as its payload.class
SignedEncryptedJwt
Deprecated.UseEncryptedThenSignedJwt
instead.class
SignedJwt
A JWS implementation of theJwt
interface. -
Uses of Jwt in org.forgerock.json.jose.jwt
Methods in org.forgerock.json.jose.jwt that return Jwt Modifier and Type Method Description Jwt
Jwt. copy()
Create a copy of the current JWT. -
Uses of Jwt in org.forgerock.openig.filter.jwt
Methods in org.forgerock.openig.filter.jwt that return Jwt Modifier and Type Method Description Jwt
JwtValidationContext. getJwt()
Returns a copy of theJwt
. -
Uses of Jwt in org.forgerock.openig.tools
Methods in org.forgerock.openig.tools with type parameters of type Jwt Modifier and Type Method Description static <T extends Jwt>
TJwtUtil. reconstructJwt(String jwt, Class<T> jwtClass)
Reconstruct a JWT from a {code String} representation. -
Uses of Jwt in org.forgerock.openig.tools.jwt.factory
Methods in org.forgerock.openig.tools.jwt.factory that return types with arguments of type Jwt Modifier and Type Method Description Promise<Jwt,NoSuchSecretException>
JwtFactory. create(Map<String,Object> template)
Produces a newJwt
. -
Uses of Jwt in org.forgerock.openig.tools.jwt.validation
Methods in org.forgerock.openig.tools.jwt.validation that return Jwt Modifier and Type Method Description Jwt
ValidatorConstraintContext. getJwt()
Return the JWT the constraints must be applied on.Methods in org.forgerock.openig.tools.jwt.validation with parameters of type Jwt Modifier and Type Method Description Promise<JwtValidatorResult,NeverThrowsException>
JwtValidator. report(Jwt jwt)
Returns the result of the JWT validation and a list of any violations.Promise<JwtValidatorResult,NeverThrowsException>
JwtValidator. report(Jwt jwt, Map<String,Object> attributes)
Returns the result of the JWT validation and a list of any violations.
-