Uses of Class
com.nimbusds.jose.JOSEObjectType
Packages that use JOSEObjectType
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).
-
Uses of JOSEObjectType in com.nimbusds.jose
Fields in com.nimbusds.jose declared as JOSEObjectTypeModifier and TypeFieldDescriptionstatic final JOSEObjectTypeJOSEObjectType.JOSECompact encoded JOSE object type.static final JOSEObjectTypeJOSEObjectType.JOSE_JSONJSON-encoded JOSE object type.static final JOSEObjectTypeJOSEObjectType.JWTJSON Web Token (JWT) object type.Methods in com.nimbusds.jose that return JOSEObjectTypeMethods in com.nimbusds.jose with parameters of type JOSEObjectTypeModifier and TypeMethodDescriptionJWEHeader.Builder.type(JOSEObjectType typ) Sets the type (typ) parameter.JWSHeader.Builder.type(JOSEObjectType typ) Sets the type (typ) parameter.PlainHeader.Builder.type(JOSEObjectType typ) Sets the type (typ) parameter.Constructors in com.nimbusds.jose with parameters of type JOSEObjectTypeModifierConstructorDescriptionprotectedHeader(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, String iss, String sub, List<String> aud, Map<String, Object> customParams, Base64URL parsedBase64URL) Creates a new JSON Web Encryption (JWE) 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) Deprecated.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 JOSEObjectTypeModifier and TypeMethodDescriptionDefaultJOSEObjectTypeVerifier.getAllowedTypes()Returns the allowed JOSE object types.Methods in com.nimbusds.jose.proc with parameters of type JOSEObjectTypeModifier and TypeMethodDescriptionvoidDefaultJOSEObjectTypeVerifier.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 JOSEObjectTypeModifierConstructorDescriptionDefaultJOSEObjectTypeVerifier(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 JOSEObjectTypeModifierConstructorDescriptionDefaultJOSEObjectTypeVerifier(Set<JOSEObjectType> allowedTypes) Creates a new JOSE object type verifier allowing the specified types.