Enum JwsException.Error
- java.lang.Object
-
- java.lang.Enum<JwsException.Error>
-
- org.apache.cxf.rs.security.jose.jws.JwsException.Error
-
- All Implemented Interfaces:
Serializable,Comparable<JwsException.Error>
- Enclosing class:
- JwsException
public static enum JwsException.Error extends Enum<JwsException.Error>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALGORITHM_NOT_SETINVALID_ALGORITHMINVALID_COMPACT_JWSINVALID_JSON_JWSINVALID_KEYINVALID_SIGNATURENO_INIT_PROPERTIESNO_PROVIDERNO_VERIFIERSIGNATURE_FAILURE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static JwsException.ErrorvalueOf(String name)Returns the enum constant of this type with the specified name.static JwsException.Error[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_PROVIDER
public static final JwsException.Error NO_PROVIDER
-
NO_VERIFIER
public static final JwsException.Error NO_VERIFIER
-
NO_INIT_PROPERTIES
public static final JwsException.Error NO_INIT_PROPERTIES
-
ALGORITHM_NOT_SET
public static final JwsException.Error ALGORITHM_NOT_SET
-
INVALID_ALGORITHM
public static final JwsException.Error INVALID_ALGORITHM
-
INVALID_KEY
public static final JwsException.Error INVALID_KEY
-
SIGNATURE_FAILURE
public static final JwsException.Error SIGNATURE_FAILURE
-
INVALID_SIGNATURE
public static final JwsException.Error INVALID_SIGNATURE
-
INVALID_COMPACT_JWS
public static final JwsException.Error INVALID_COMPACT_JWS
-
INVALID_JSON_JWS
public static final JwsException.Error INVALID_JSON_JWS
-
-
Method Detail
-
values
public static JwsException.Error[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (JwsException.Error c : JwsException.Error.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JwsException.Error valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-