Package org.openiam.mq.constants.api
Enum ReconciliationObjectProcessingAPI
- java.lang.Object
-
- java.lang.Enum<ReconciliationObjectProcessingAPI>
-
- org.openiam.mq.constants.api.ReconciliationObjectProcessingAPI
-
- All Implemented Interfaces:
Serializable
,Comparable<ReconciliationObjectProcessingAPI>
,OpenIAMAPI
public enum ReconciliationObjectProcessingAPI extends Enum<ReconciliationObjectProcessingAPI> implements OpenIAMAPI
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openiam.mq.constants.api.OpenIAMAPI
OpenIAMAPI.OpenIAMAPIResolver<T extends OpenIAMAPI>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReconciliationObjectProcessingAPI
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReconciliationObjectProcessingAPI[]
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 interface org.openiam.mq.constants.api.OpenIAMAPI
isRegisterInAuditLog, name
-
-
-
-
Enum Constant Detail
-
USER_PROVISION_ADD
public static final ReconciliationObjectProcessingAPI USER_PROVISION_ADD
-
USER_PROVISION_UPDATE
public static final ReconciliationObjectProcessingAPI USER_PROVISION_UPDATE
-
USER_PROVISION_DELETE
public static final ReconciliationObjectProcessingAPI USER_PROVISION_DELETE
-
USER_DIRECT_DELETE_REQUEST
public static final ReconciliationObjectProcessingAPI USER_DIRECT_DELETE_REQUEST
-
GROUP_PROVISION_ADD
public static final ReconciliationObjectProcessingAPI GROUP_PROVISION_ADD
-
GROUP_PROVISION_UPDATE
public static final ReconciliationObjectProcessingAPI GROUP_PROVISION_UPDATE
-
GROUP_PROVISION_DELETE
public static final ReconciliationObjectProcessingAPI GROUP_PROVISION_DELETE
-
GROUP_DIRECT_DELETE_REQUEST
public static final ReconciliationObjectProcessingAPI GROUP_DIRECT_DELETE_REQUEST
-
TARGET_DATA_PART_PROCESSING
public static final ReconciliationObjectProcessingAPI TARGET_DATA_PART_PROCESSING
-
IDM_DATA_PART_PROCESSING
public static final ReconciliationObjectProcessingAPI IDM_DATA_PART_PROCESSING
-
-
Method Detail
-
values
public static ReconciliationObjectProcessingAPI[] 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 (ReconciliationObjectProcessingAPI c : ReconciliationObjectProcessingAPI.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReconciliationObjectProcessingAPI 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
-
-