Enum AuditEventTypeType
- java.lang.Object
-
- java.lang.Enum<AuditEventTypeType>
-
- com.evolveum.midpoint.xml.ns._public.common.audit_3.AuditEventTypeType
-
- All Implemented Interfaces:
Serializable
,Comparable<AuditEventTypeType>
public enum AuditEventTypeType extends Enum<AuditEventTypeType>
Java class for AuditEventTypeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AuditEventTypeType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="getObject"/> <enumeration value="addObject"/> <enumeration value="modifyObject"/> <enumeration value="deleteObject"/> <enumeration value="executeChangesRaw"/> <enumeration value="synchronization"/> <enumeration value="createSession"/> <enumeration value="terminateSession"/> <enumeration value="workItem"/> <enumeration value="workflowProcessInstance"/> <enumeration value="reconciliation"/> <enumeration value="suspendTask"/> <enumeration value="resumeTask"/> <enumeration value="runTaskImmediately"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_OBJECT
CREATE_SESSION
DELETE_OBJECT
EXECUTE_CHANGES_RAW
GET_OBJECT
MODIFY_OBJECT
RECONCILIATION
RESUME_TASK
RUN_TASK_IMMEDIATELY
SUSPEND_TASK
SYNCHRONIZATION
TERMINATE_SESSION
WORK_ITEM
WORKFLOW_PROCESS_INSTANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditEventTypeType
fromValue(String v)
String
value()
static AuditEventTypeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static AuditEventTypeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET_OBJECT
public static final AuditEventTypeType GET_OBJECT
-
ADD_OBJECT
public static final AuditEventTypeType ADD_OBJECT
-
MODIFY_OBJECT
public static final AuditEventTypeType MODIFY_OBJECT
-
DELETE_OBJECT
public static final AuditEventTypeType DELETE_OBJECT
-
EXECUTE_CHANGES_RAW
public static final AuditEventTypeType EXECUTE_CHANGES_RAW
-
SYNCHRONIZATION
public static final AuditEventTypeType SYNCHRONIZATION
-
CREATE_SESSION
public static final AuditEventTypeType CREATE_SESSION
-
TERMINATE_SESSION
public static final AuditEventTypeType TERMINATE_SESSION
-
WORK_ITEM
public static final AuditEventTypeType WORK_ITEM
-
WORKFLOW_PROCESS_INSTANCE
public static final AuditEventTypeType WORKFLOW_PROCESS_INSTANCE
-
RECONCILIATION
public static final AuditEventTypeType RECONCILIATION
-
SUSPEND_TASK
public static final AuditEventTypeType SUSPEND_TASK
-
RESUME_TASK
public static final AuditEventTypeType RESUME_TASK
-
RUN_TASK_IMMEDIATELY
public static final AuditEventTypeType RUN_TASK_IMMEDIATELY
-
-
Method Detail
-
values
public static AuditEventTypeType[] 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 (AuditEventTypeType c : AuditEventTypeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditEventTypeType 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 AuditEventTypeType fromValue(String v)
-
-