Uses of Interface
org.forgerock.json.jose.jwt.Payload
-
Packages that use Payload Package Description 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. -
-
Uses of Payload in org.forgerock.json.jose.jwe
Classes in org.forgerock.json.jose.jwe that implement Payload Modifier and Type Class Description class
EncryptedJwt
A JWE implementation of theJwt
interface.class
SignedThenEncryptedJwt
A nested signed-then-encrypted JWT. -
Uses of Payload in org.forgerock.json.jose.jws
Classes in org.forgerock.json.jose.jws that implement Payload 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.Methods in org.forgerock.json.jose.jws that return Payload Modifier and Type Method Description protected Payload
SignedJwt. getPayload()
Gets the payload for the JWS, which will either be a JWT Claims Set,SignedJwt.getClaimsSet()
, or a nested EncryptedJwt,EncryptedJwt
.Constructors in org.forgerock.json.jose.jws with parameters of type Payload Constructor Description SignedJwt(JwsHeader header, Payload nestedPayload, byte[] signingInput, byte[] signature)
Constructs a reconstructed SignedJwt from its constituent parts, the JwsHeader, nested Encrypted JWT, signing input and signature.SignedJwt(JwsHeader header, Payload nestedPayload, SigningHandler signingHandler)
Constructs a fresh, new SignedJwt from the given JwsHeader and nested Encrypted JWT. -
Uses of Payload in org.forgerock.json.jose.jwt
Classes in org.forgerock.json.jose.jwt that implement Payload Modifier and Type Class Description class
JwtClaimsSet
An implementation that holds a JWT's Claims Set.Methods in org.forgerock.json.jose.jwt that return Payload Modifier and Type Method Description Payload
Payload. copy()
Create a copy of the current payload.
-