Enum ResponseStatusCodes
- java.lang.Object
-
- java.lang.Enum<ResponseStatusCodes>
-
- org.certificateservices.messages.assertion.ResponseStatusCodes
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ResponseStatusCodes>
public enum ResponseStatusCodes extends java.lang.Enum<ResponseStatusCodes>
Enumeration describing available SAMLP response status codes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description REQUESTERRESPONDERSUCCESSVERSION_MISMATCH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetURIValue()static ResponseStatusCodesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ResponseStatusCodes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final ResponseStatusCodes SUCCESS
-
REQUESTER
public static final ResponseStatusCodes REQUESTER
-
RESPONDER
public static final ResponseStatusCodes RESPONDER
-
VERSION_MISMATCH
public static final ResponseStatusCodes VERSION_MISMATCH
-
-
Method Detail
-
values
public static ResponseStatusCodes[] 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 (ResponseStatusCodes c : ResponseStatusCodes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResponseStatusCodes valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getURIValue
public java.lang.String getURIValue()
-
-