Uses of Interface
org.forgerock.json.jose.builders.JwtBuilder
Package
Description
Classes and interfaces for builder to build JWTs using a fluent API.
-
Uses of JwtBuilder in org.forgerock.json.jose.builders
Modifier and TypeClassDescriptionclass
JwtHeaderBuilder<T extends JwtBuilder,
B extends JwtHeaderBuilder<T, B>> A base implementation of a JWT header builder that provides a fluent builder pattern to creating JWT headers.class
JwtSecureHeaderBuilder<T extends JwtBuilder,
B extends JwtSecureHeaderBuilder<T, B>> A base implementation of a JWT header builder, for the common security header parameters shared by the JWS and JWE headers, that provides a fluent builder pattern to creating JWT headers.Modifier and TypeInterfaceDescriptioninterface
A base interface for both SignedJwtBuilder and SignedEncryptedJwtBuilder to create Signed JWTs and Signed and Encrypted JWTs.Modifier and TypeClassDescriptionclass
A base implementation for all JwtBuilders that provides the basis of the JWT builder methods.class
An implementation of a JwtBuilder that can build a JWT and encrypt it, resulting in an EncryptedJwt object.class
An implementation of a JwtBuilder that can build a JWT and encrypt it and nest it within another signed JWT, resulting in an SignedEncryptedJwt object.class
Deprecated.class
An implementation of a JwtBuilder that can build a JWT and sign it, resulting in a SignedJwt object.class
Builder for nested signed-then-encrypted JWT.
EncryptedThenSignedJwtBuilder
instead.