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 TypeClassDescriptionclassJSON Web Encryption (JWE) secured object with compact serialisation.classJSON Web Signature (JWS) secured object with compact serialisation.classUnsecured (plain /alg=none) JOSE object with compact serialisation.Methods in com.nimbusds.jose that return JOSEObjectModifier and TypeMethodDescriptionstatic JOSEObjectParses 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 TypeMethodDescriptionbooleanJOSEMatcher.matches(JOSEObject joseObject) Returnstrueif 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 TypeClassDescriptionclassEncrypted JSON Web Token (JWT).classUnsecured (plain) JSON Web Token (JWT).classSigned JSON Web Token (JWT).