Uses of Class
com.nimbusds.jose.JOSEObject
Packages that use JOSEObject
Package
Description
Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.
Framework for application-specific verification and decryption of JOSE
objects (with arbitrary payloads).
JSON Web Token (JWT) interfaces and classes.
-
Uses of JOSEObject in com.nimbusds.jose
Subclasses of JOSEObject in com.nimbusds.joseModifier and TypeClassDescriptionclass
JSON Web Encryption (JWE) secured object with compact serialisation.class
JSON Web Signature (JWS) secured object with compact serialisation.class
Unsecured (plain /alg=none
) JOSE object with compact serialisation.Methods in com.nimbusds.jose that return JOSEObjectModifier and TypeMethodDescriptionstatic JOSEObject
Parses a JOSE object from the specified string in compact encoding. -
Uses of JOSEObject in com.nimbusds.jose.proc
Methods in com.nimbusds.jose.proc that return types with arguments of type JOSEObjectModifier and TypeMethodDescriptionSet<Class<? extends JOSEObject>>
JOSEMatcher.getJOSEClasses()
Returns the JOSE classes to match.Methods in com.nimbusds.jose.proc with parameters of type JOSEObjectModifier and TypeMethodDescriptionboolean
JOSEMatcher.matches
(JOSEObject joseObject) Returnstrue
if the specified JOSE object matches.DefaultJOSEProcessor.process
(JOSEObject joseObject, C context) JOSEProcessor.process
(JOSEObject joseObject, C context) Processes the specified JOSE object (unsecured, JWS or JWE).Method parameters in com.nimbusds.jose.proc with type arguments of type JOSEObjectModifier and TypeMethodDescriptionJOSEMatcher.Builder.joseClass
(Class<? extends JOSEObject> clazz) Sets a single JOSE class to match.JOSEMatcher.Builder.joseClasses
(Set<Class<? extends JOSEObject>> classes) Sets multiple JOSE classes to match.Constructor parameters in com.nimbusds.jose.proc with type arguments of type JOSEObjectModifierConstructorDescriptionJOSEMatcher
(Set<Class<? extends JOSEObject>> classes, Set<Algorithm> algs, Set<EncryptionMethod> encs, Set<URI> jkus, Set<String> kids) Creates a new JOSE matcher. -
Uses of JOSEObject in com.nimbusds.jwt
Subclasses of JOSEObject in com.nimbusds.jwtModifier and TypeClassDescriptionclass
Encrypted JSON Web Token (JWT).class
Unsecured (plain) JSON Web Token (JWT).class
Signed JSON Web Token (JWT).