Uses of Interface
org.forgerock.json.jose.builders.JwtBuilder
-
Packages that use JwtBuilder Package Description org.forgerock.json.jose.builders Classes and interfaces for builder to build JWTs using a fluent API. -
-
Uses of JwtBuilder in org.forgerock.json.jose.builders
Classes in org.forgerock.json.jose.builders with type parameters of type JwtBuilder Modifier and Type Class Description class
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.Subinterfaces of JwtBuilder in org.forgerock.json.jose.builders Modifier and Type Interface Description interface
SignedJwtBuilder
A base interface for both SignedJwtBuilder and SignedEncryptedJwtBuilder to create Signed JWTs and Signed and Encrypted JWTs.Classes in org.forgerock.json.jose.builders that implement JwtBuilder Modifier and Type Class Description class
AbstractJwtBuilder
A base implementation for all JwtBuilders that provides the basis of the JWT builder methods.class
EncryptedJwtBuilder
An implementation of a JwtBuilder that can build a JWT and encrypt it, resulting in an EncryptedJwt object.class
EncryptedThenSignedJwtBuilder
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
SignedEncryptedJwtBuilder
Deprecated.UseEncryptedThenSignedJwtBuilder
instead.class
SignedJwtBuilderImpl
An implementation of a JwtBuilder that can build a JWT and sign it, resulting in a SignedJwt object.class
SignedThenEncryptedJwtBuilder
Builder for nested signed-then-encrypted JWT.
-