org.apache.cxf.rs.security.jose.jws
Enum JwsException.Error

java.lang.Object
  extended by java.lang.Enum<JwsException.Error>
      extended by 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
ALGORITHM_NOT_SET
           
INVALID_ALGORITHM
           
INVALID_COMPACT_JWS
           
INVALID_JSON_JWS
           
INVALID_KEY
           
INVALID_SIGNATURE
           
NO_INIT_PROPERTIES
           
NO_PROVIDER
           
NO_VERIFIER
           
SIGNATURE_FAILURE
           
 
Method Summary
static JwsException.Error valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null


Apache CXF