Uses of Class
com.nimbusds.jose.JOSEObject
-
Packages that use JOSEObject Package Description com.nimbusds.jose Base Javascript Object Signing and Encryption (JOSE) interfaces and classes.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 JOSEObject in com.nimbusds.jose
Subclasses of JOSEObject in com.nimbusds.jose Modifier and Type Class Description classJWEObjectJSON Web Encryption (JWE) secured object serialisable to compact encoding.classJWSObjectJSON Web Signature (JWS) secured object serialisable to compact encoding.classPlainObjectUnsecured (plain /alg=none) JOSE object.Methods in com.nimbusds.jose that return JOSEObject Modifier and Type Method Description static JOSEObjectJOSEObject. parse(String s)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 JOSEObject Modifier and Type Method Description Set<Class<? extends JOSEObject>>JOSEMatcher. getJOSEClasses()Returns the JOSE classes to match.Methods in com.nimbusds.jose.proc with parameters of type JOSEObject Modifier and Type Method Description booleanJOSEMatcher. matches(JOSEObject joseObject)Returnstrueif the specified JOSE object matches.PayloadDefaultJOSEProcessor. process(JOSEObject joseObject, C context)PayloadJOSEProcessor. 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 JOSEObject Modifier and Type Method Description JOSEMatcher.BuilderJOSEMatcher.Builder. joseClass(Class<? extends JOSEObject> clazz)Sets a single JOSE class to match.JOSEMatcher.BuilderJOSEMatcher.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 JOSEObject Constructor Description JOSEMatcher(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.jwt Modifier and Type Class Description classEncryptedJWTEncrypted JSON Web Token (JWT).classPlainJWTUnsecured (plain) JSON Web Token (JWT).classSignedJWTSigned JSON Web Token (JWT).
-