Uses of Class
com.nimbusds.jose.JOSEObjectType
-
Packages that use JOSEObjectType 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). -
-
Uses of JOSEObjectType in com.nimbusds.jose
Fields in com.nimbusds.jose declared as JOSEObjectType Modifier and Type Field Description static JOSEObjectTypeJOSEObjectType. JOSECompact encoded JOSE object type.static JOSEObjectTypeJOSEObjectType. JOSE_JSONJSON-encoded JOSE object type..static JOSEObjectTypeJOSEObjectType. JWTJSON Web Token (JWT) object type.Methods in com.nimbusds.jose that return JOSEObjectType Modifier and Type Method Description JOSEObjectTypeHeader. getType()Gets the type (typ) parameter.Methods in com.nimbusds.jose with parameters of type JOSEObjectType Modifier and Type Method Description JWEHeader.BuilderJWEHeader.Builder. type(JOSEObjectType typ)Sets the type (typ) parameter.JWSHeader.BuilderJWSHeader.Builder. type(JOSEObjectType typ)Sets the type (typ) parameter.PlainHeader.BuilderPlainHeader.Builder. type(JOSEObjectType typ)Sets the type (typ) parameter.Constructors in com.nimbusds.jose with parameters of type JOSEObjectType Constructor Description Header(Algorithm alg, JOSEObjectType typ, String cty, Set<String> crit, Map<String,Object> customParams, Base64URL parsedBase64URL)Creates a new abstract header.JWEHeader(Algorithm alg, EncryptionMethod enc, JOSEObjectType typ, String cty, Set<String> crit, URI jku, JWK jwk, URI x5u, Base64URL x5t, Base64URL x5t256, List<Base64> x5c, String kid, JWK epk, CompressionAlgorithm zip, Base64URL apu, Base64URL apv, Base64URL p2s, int p2c, Base64URL iv, Base64URL tag, String skid, Map<String,Object> customParams, Base64URL parsedBase64URL)Creates a new JSON Web Encryption (JWE) header.JWSHeader(JWSAlgorithm alg, JOSEObjectType typ, String cty, Set<String> crit, URI jku, JWK jwk, URI x5u, Base64URL x5t, Base64URL x5t256, List<Base64> x5c, String kid, boolean b64, Map<String,Object> customParams, Base64URL parsedBase64URL)Creates a new JSON Web Signature (JWS) header.JWSHeader(JWSAlgorithm alg, JOSEObjectType typ, String cty, Set<String> crit, URI jku, JWK jwk, URI x5u, Base64URL x5t, Base64URL x5t256, List<Base64> x5c, String kid, Map<String,Object> customParams, Base64URL parsedBase64URL)Deprecated.PlainHeader(JOSEObjectType typ, String cty, Set<String> crit, Map<String,Object> customParams, Base64URL parsedBase64URL)Creates a new unsecured (plain) header with algorithmnone. -
Uses of JOSEObjectType in com.nimbusds.jose.proc
Methods in com.nimbusds.jose.proc that return types with arguments of type JOSEObjectType Modifier and Type Method Description Set<JOSEObjectType>DefaultJOSEObjectTypeVerifier. getAllowedTypes()Returns the allowed JOSE object types.Methods in com.nimbusds.jose.proc with parameters of type JOSEObjectType Modifier and Type Method Description voidDefaultJOSEObjectTypeVerifier. verify(JOSEObjectType type, C context)voidJOSEObjectTypeVerifier. verify(JOSEObjectType type, C context)Verifies the JOSE "typ" (type) header parameter.Constructors in com.nimbusds.jose.proc with parameters of type JOSEObjectType Constructor Description DefaultJOSEObjectTypeVerifier(JOSEObjectType... allowedTypes)Creates a new JOSE object type verifier allowing the specified types.Constructor parameters in com.nimbusds.jose.proc with type arguments of type JOSEObjectType Constructor Description DefaultJOSEObjectTypeVerifier(Set<JOSEObjectType> allowedTypes)Creates a new JOSE object type verifier allowing the specified types.
-