Uses of Class
com.nimbusds.jose.Payload
Packages that use Payload
Package
Description
Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.
JSON Web Signature (JWS) minting framework.
Framework for application-specific verification and decryption of JOSE
objects (with arbitrary payloads).
JSON Web Token (JWT) interfaces and classes.
-
Uses of Payload in com.nimbusds.jose
Methods in com.nimbusds.jose that return PayloadModifier and TypeMethodDescriptionJOSEObject.getPayload()Returns the payload of this JOSE object.JOSEObjectJSON.getPayload()Returns the payload of this JOSE object.Methods in com.nimbusds.jose with parameters of type PayloadModifier and TypeMethodDescriptionstatic JWSObjectParses 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.Transforms the specified payload into the desired type.Constructors in com.nimbusds.jose with parameters of type PayloadModifierConstructorDescriptionprotectedJOSEObject(Payload payload) Creates a new JOSE object with the specified payload.protectedJOSEObjectJSON(Payload payload) Creates a new JOSE object with the specified payload.Creates a new to-be-encrypted JSON Web Encryption (JWE) object with the specified header and payload.JWEObjectJSON(JWEHeader header, Payload payload) Creates a new to-be-encrypted JSON Web Encryption (JWE) object with the specified JWE protected header and payload.JWEObjectJSON(JWEHeader header, Payload payload, UnprotectedHeader unprotectedHeader, byte[] aad) Creates a new to-be-encrypted JSON Web Encryption (JWE) object with the specified JWE protected header, payload and Additional Authenticated Data (AAD).Creates a new to-be-signed JSON Web Signature (JWS) object with the specified header and payload.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 PayloadModifier and TypeMethodDescription -
Uses of Payload in com.nimbusds.jose.proc
Methods in com.nimbusds.jose.proc that return PayloadModifier and TypeMethodDescriptionDefaultJOSEProcessor.process(JOSEObject joseObject, C context) DefaultJOSEProcessor.process(PlainObject plainObject, C context) JOSEProcessor.process(JOSEObject joseObject, C context) Processes the specified JOSE object (unsecured, JWS or JWE).Processes the specified JWE object by decrypting it.Processes the specified JWS object by verifying its signature.JOSEProcessor.process(PlainObject plainObject, C context) Processes the specified unsecured (plain) JOSE object, typically by checking its 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 PayloadModifier and TypeMethodDescriptionJWTClaimsSet.toPayload()Returns a JOSE object payload representation of this claims set.JWTClaimsSet.toPayload(boolean serializeNullClaims) Returns a JOSE object payload representation of this claims set.Methods in com.nimbusds.jwt with parameters of type PayloadModifier and TypeMethodDescriptionprotected voidEncryptedJWT.setPayload(Payload payload) protected voidPlainJWT.setPayload(Payload payload) protected voidSignedJWT.setPayload(Payload payload)