Package org.apache.cxf.xkms.model.xkms
Enum ResultMinorEnum
- java.lang.Object
-
- java.lang.Enum<ResultMinorEnum>
-
- org.apache.cxf.xkms.model.xkms.ResultMinorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<ResultMinorEnum>
public enum ResultMinorEnum extends Enum<ResultMinorEnum>
Java class for ResultMinorEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ResultMinorEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}anyURI"> <enumeration value="http://www.w3.org/2002/03/xkms#NoMatch"/> <enumeration value="http://www.w3.org/2002/03/xkms#TooManyResponses"/> <enumeration value="http://www.w3.org/2002/03/xkms#Incomplete"/> <enumeration value="http://www.w3.org/2002/03/xkms#Failure"/> <enumeration value="http://www.w3.org/2002/03/xkms#Refused"/> <enumeration value="http://www.w3.org/2002/03/xkms#NoAuthentication"/> <enumeration value="http://www.w3.org/2002/03/xkms#MessageNotSupported"/> <enumeration value="http://www.w3.org/2002/03/xkms#UnknownResponseId"/> <enumeration value="http://www.w3.org/2002/03/xkms#RepresentRequired"/> <enumeration value="http://www.w3.org/2002/03/xkms#NotSynchronous"/> <enumeration value="http://www.w3.org/2002/03/xkms#OptionalElementNotSupported"/> <enumeration value="http://www.w3.org/2002/03/xkms#ProofOfPossessionRequired"/> <enumeration value="http://www.w3.org/2002/03/xkms#TimeInstantNotSupported"/> <enumeration value="http://www.w3.org/2002/03/xkms#TimeInstantOutOfRange"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ResultMinorEnumfromValue(String v)Stringvalue()static ResultMinorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static ResultMinorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_NO_MATCH
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_NO_MATCH
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_TOO_MANY_RESPONSES
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_TOO_MANY_RESPONSES
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_INCOMPLETE
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_INCOMPLETE
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_FAILURE
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_FAILURE
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_REFUSED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_REFUSED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_NO_AUTHENTICATION
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_NO_AUTHENTICATION
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_MESSAGE_NOT_SUPPORTED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_MESSAGE_NOT_SUPPORTED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_UNKNOWN_RESPONSE_ID
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_UNKNOWN_RESPONSE_ID
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_REPRESENT_REQUIRED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_REPRESENT_REQUIRED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_NOT_SYNCHRONOUS
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_NOT_SYNCHRONOUS
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_OPTIONAL_ELEMENT_NOT_SUPPORTED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_OPTIONAL_ELEMENT_NOT_SUPPORTED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_PROOF_OF_POSSESSION_REQUIRED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_PROOF_OF_POSSESSION_REQUIRED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_TIME_INSTANT_NOT_SUPPORTED
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_TIME_INSTANT_NOT_SUPPORTED
-
HTTP_WWW_W_3_ORG_2002_03_XKMS_TIME_INSTANT_OUT_OF_RANGE
public static final ResultMinorEnum HTTP_WWW_W_3_ORG_2002_03_XKMS_TIME_INSTANT_OUT_OF_RANGE
-
-
Method Detail
-
values
public static ResultMinorEnum[] 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 (ResultMinorEnum c : ResultMinorEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResultMinorEnum 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
-
value
public String value()
-
fromValue
public static ResultMinorEnum fromValue(String v)
-
-