Uses of Class
com.nimbusds.jose.Payload
-
Packages that use Payload Package Description com.nimbusds.jose Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.com.nimbusds.jose.mint JSON Web Signature (JWS) minting framework.com.nimbusds.jose.proc Framework for application-specific verification and decryption of JOSE objects (with arbitrary payloads).com.nimbusds.jwt JSON Web Token (JWT) interfaces and classes. -
-
Uses of Payload in com.nimbusds.jose
Methods in com.nimbusds.jose that return Payload Modifier and Type Method Description PayloadJOSEObject. getPayload()Returns the payload of this JOSE object.PayloadJOSEObjectJSON. getPayload()Returns the payload of this JOSE object.Methods in com.nimbusds.jose with parameters of type Payload Modifier and Type Method Description static JWSObjectJWSObject. parse(String s, Payload detachedPayload)Parses a JWS object from the specified string in compact format and a detached payload which can be optionally unencoded (RFC 7797).protected voidJOSEObject. setPayload(Payload payload)Sets the payload of this JOSE object.protected voidJOSEObjectJSON. setPayload(Payload payload)Sets the payload of this JOSE object.TPayloadTransformer. transform(Payload payload)Transforms the specified payload into the desired type.Constructors in com.nimbusds.jose with parameters of type Payload Constructor Description JOSEObject(Payload payload)Creates a new JOSE object with the specified payload.JOSEObjectJSON(Payload payload)Creates a new JOSE object with the specified payload.JWEObject(JWEHeader header, Payload payload)Creates a new to-be-encrypted JSON Web Encryption (JWE) object with the specified header and payload.JWSObject(JWSHeader header, Payload payload)Creates a new to-be-signed JSON Web Signature (JWS) object with the specified header and payload.JWSObject(Base64URL firstPart, Payload payload, Base64URL thirdPart)Creates a new signed JSON Web Signature (JWS) object with the specified serialised parts and payload which can be optionally unencoded (RFC 7797).JWSObjectJSON(Payload payload)Creates a new to-be-signed JSON Web Signature (JWS) secured object with the specified payload.PlainObject(Payload payload)Creates a new unsecured JOSE object with a defaultPlainHeaderand the specified payload.PlainObject(PlainHeader header, Payload payload)Creates a new unsecured JOSE object with the specified header and payload. -
Uses of Payload in com.nimbusds.jose.mint
Methods in com.nimbusds.jose.mint with parameters of type Payload Modifier and Type Method Description JWSObjectDefaultJWSMinter. mint(JWSHeader header, Payload payload, C context)JWSObjectJWSMinter. mint(JWSHeader header, Payload payload, C context) -
Uses of Payload in com.nimbusds.jose.proc
Methods in com.nimbusds.jose.proc that return Payload Modifier and Type Method Description PayloadDefaultJOSEProcessor. process(JOSEObject joseObject, C context)PayloadDefaultJOSEProcessor. process(JWEObject jweObject, C context)PayloadDefaultJOSEProcessor. process(JWSObject jwsObject, C context)PayloadDefaultJOSEProcessor. process(PlainObject plainObject, C context)PayloadDefaultJOSEProcessor. process(String compactJOSE, C context)PayloadJOSEProcessor. process(JOSEObject joseObject, C context)Processes the specified JOSE object (unsecured, JWS or JWE).PayloadJOSEProcessor. process(JWEObject jweObject, C context)Processes the specified JWE object by decrypting it.PayloadJOSEProcessor. process(JWSObject jwsObject, C context)Processes the specified JWS object by verifying its signature.PayloadJOSEProcessor. process(PlainObject plainObject, C context)Processes the specified unsecured (plain) JOSE object, typically by checking its context.PayloadJOSEProcessor. process(String compactEncodedJOSE, C context)Parses and processes the specified JOSE object (unsecured, JWS or JWE). -
Uses of Payload in com.nimbusds.jwt
Methods in com.nimbusds.jwt that return Payload Modifier and Type Method Description PayloadJWTClaimsSet. toPayload()Returns a JOSE object payload representation of this claims set.Methods in com.nimbusds.jwt with parameters of type Payload Modifier and Type Method Description protected voidEncryptedJWT. setPayload(Payload payload)protected voidPlainJWT. setPayload(Payload payload)protected voidSignedJWT. setPayload(Payload payload)
-