Package org.openiam.provision.constant
Enum ErrorCode
- java.lang.Object
-
- java.lang.Enum<ErrorCode>
-
- org.openiam.provision.constant.ErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<ErrorCode>
public enum ErrorCode extends Enum<ErrorCode>
Java class for ErrorCode.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ErrorCode
fromValue(String v)
String
value()
static ErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static ErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PERSIST_EXCEPTION
public static final ErrorCode PERSIST_EXCEPTION
-
MALFORMED_REQUEST
public static final ErrorCode MALFORMED_REQUEST
-
UNSUPPORTED_OPERATION
public static final ErrorCode UNSUPPORTED_OPERATION
-
UNSUPPORTED_IDENTIFIER_TYPE
public static final ErrorCode UNSUPPORTED_IDENTIFIER_TYPE
-
NO_SUCH_IDENTIFIER
public static final ErrorCode NO_SUCH_IDENTIFIER
-
CUSTOM_ERROR
public static final ErrorCode CUSTOM_ERROR
-
OTHER_ERROR
public static final ErrorCode OTHER_ERROR
-
DIRECTORY_ERROR
public static final ErrorCode DIRECTORY_ERROR
-
NAMING_EXCEPTION
public static final ErrorCode NAMING_EXCEPTION
-
OPERATION_NOT_SUPPORTED_EXCEPTION
public static final ErrorCode OPERATION_NOT_SUPPORTED_EXCEPTION
-
SQL_ERROR
public static final ErrorCode SQL_ERROR
-
CONNECTOR_ERROR
public static final ErrorCode CONNECTOR_ERROR
-
INVALID_CONFIGURATION
public static final ErrorCode INVALID_CONFIGURATION
-
INVALID_ATTRIBUTE
public static final ErrorCode INVALID_ATTRIBUTE
-
UNSUPPORTED_EXECUTION_MODE
public static final ErrorCode UNSUPPORTED_EXECUTION_MODE
-
INVALID_CONTAINMENT
public static final ErrorCode INVALID_CONTAINMENT
-
NO_SUCH_REQUEST
public static final ErrorCode NO_SUCH_REQUEST
-
NO_SUCH_OBJECT
public static final ErrorCode NO_SUCH_OBJECT
-
UNSUPPORTED_SELECTION_TYPE
public static final ErrorCode UNSUPPORTED_SELECTION_TYPE
-
RESULT_SET_TO_LARGE
public static final ErrorCode RESULT_SET_TO_LARGE
-
UNSUPPORTED_PROFILE
public static final ErrorCode UNSUPPORTED_PROFILE
-
INVALID_IDENTIFIER
public static final ErrorCode INVALID_IDENTIFIER
-
ALREADY_EXISTS
public static final ErrorCode ALREADY_EXISTS
-
INVALID_MANAGED_SYS_ID
public static final ErrorCode INVALID_MANAGED_SYS_ID
-
USER_LIMIT_REACHED
public static final ErrorCode USER_LIMIT_REACHED
-
OPERATIONS_ERROR
public static final ErrorCode OPERATIONS_ERROR
-
PROTOCOL_ERROR
public static final ErrorCode PROTOCOL_ERROR
-
TIMELIMIT_EXCEEDED
public static final ErrorCode TIMELIMIT_EXCEEDED
-
SIZELIMIT_EXCEEDED
public static final ErrorCode SIZELIMIT_EXCEEDED
-
COMPARE_FAILED
public static final ErrorCode COMPARE_FAILED
-
AUTHENTICATION_FAILED
public static final ErrorCode AUTHENTICATION_FAILED
-
SESSION_INVALID
public static final ErrorCode SESSION_INVALID
-
CONSTRAINT_VIOLATION
public static final ErrorCode CONSTRAINT_VIOLATION
-
PARSE_EXCEPTION
public static final ErrorCode PARSE_EXCEPTION
-
NO_SUCH_ATTRIBUTE
public static final ErrorCode NO_SUCH_ATTRIBUTE
-
UNDEFINED_TYPE
public static final ErrorCode UNDEFINED_TYPE
-
INSUFFICIENT_RIGHTS
public static final ErrorCode INSUFFICIENT_RIGHTS
-
SYSTEM_UNAVAILABLE
public static final ErrorCode SYSTEM_UNAVAILABLE
-
OBJECT_CLASS_VIOLATION
public static final ErrorCode OBJECT_CLASS_VIOLATION
-
NO_RESULTS_RETURNED
public static final ErrorCode NO_RESULTS_RETURNED
-
CONTAINER_NOT_EMPTY
public static final ErrorCode CONTAINER_NOT_EMPTY
-
CSV_ERROR
public static final ErrorCode CSV_ERROR
-
LDAP_ERROR
public static final ErrorCode LDAP_ERROR
-
SCRIPT_NAME_NOT_DEFINED
public static final ErrorCode SCRIPT_NAME_NOT_DEFINED
-
COMMAND_TYPE_NOT_DEFINED
public static final ErrorCode COMMAND_TYPE_NOT_DEFINED
-
SKIP_PROVISIONING
public static final ErrorCode SKIP_PROVISIONING
-
UNKNOWN_API
public static final ErrorCode UNKNOWN_API
-
-
Method Detail
-
values
public static ErrorCode[] 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 (ErrorCode c : ErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ErrorCode 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()
-
-