Enum EventCategoryType
- java.lang.Object
-
- java.lang.Enum<EventCategoryType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.EventCategoryType
-
- All Implemented Interfaces:
Serializable
,Comparable<EventCategoryType>
public enum EventCategoryType extends Enum<EventCategoryType>
Java class for EventCategoryType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EventCategoryType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="resourceObjectEvent"/> <enumeration value="modelEvent"/> <enumeration value="workItemEvent"/> <enumeration value="workItemLifecycleEvent"/> <enumeration value="workItemAllocationEvent"/> <enumeration value="workItemCustomEvent"/> <enumeration value="workflowProcessEvent"/> <enumeration value="workflowEvent"/> <enumeration value="caseWorkItemEvent"/> <enumeration value="accessCertificationEvent"/> <enumeration value="certCampaignEvent"/> <enumeration value="certCampaignStageEvent"/> <enumeration value="certCaseEvent"/> <enumeration value="caseManagementEvent"/> <enumeration value="taskEvent"/> <enumeration value="customEvent"/> <enumeration value="policyRuleEvent"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_CERTIFICATION_EVENT
CASE_MANAGEMENT_EVENT
CASE_WORK_ITEM_EVENT
CERT_CAMPAIGN_EVENT
CERT_CAMPAIGN_STAGE_EVENT
CERT_CASE_EVENT
CUSTOM_EVENT
MODEL_EVENT
POLICY_RULE_EVENT
RESOURCE_OBJECT_EVENT
TASK_EVENT
WORK_ITEM_ALLOCATION_EVENT
Subtype of workItemEvent.WORK_ITEM_CUSTOM_EVENT
Subtype of workItemEvent.WORK_ITEM_EVENT
WORK_ITEM_LIFECYCLE_EVENT
Subtype of workItemEvent.WORKFLOW_EVENT
WORKFLOW_PROCESS_EVENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EventCategoryType
fromValue(String v)
String
value()
static EventCategoryType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EventCategoryType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE_OBJECT_EVENT
public static final EventCategoryType RESOURCE_OBJECT_EVENT
-
MODEL_EVENT
public static final EventCategoryType MODEL_EVENT
-
WORK_ITEM_EVENT
public static final EventCategoryType WORK_ITEM_EVENT
-
WORK_ITEM_LIFECYCLE_EVENT
public static final EventCategoryType WORK_ITEM_LIFECYCLE_EVENT
Subtype of workItemEvent. Represents the fact that a work item was created or deleted. Operation of ADD means that the work item was created. Operation of DELETE means that the work item was deleted (usually because it was completed).
-
WORK_ITEM_ALLOCATION_EVENT
public static final EventCategoryType WORK_ITEM_ALLOCATION_EVENT
Subtype of workItemEvent. Represents the fact that a work item was allocated to a user. (Either automatically when it is created or delegated, or manually when the user has claimed the item.) Operation of ADD means that the allocation was created. Operation of MODIFY means that the allocation is about to be deleted (probably as part of timed delegation/escalation or timed completion). Operation of DELETE means that the allocation was deleted (because of task completion/deletion or delegation).
-
WORK_ITEM_CUSTOM_EVENT
public static final EventCategoryType WORK_ITEM_CUSTOM_EVENT
Subtype of workItemEvent. Custom notification event emitted by "notify" timed action.
-
WORKFLOW_PROCESS_EVENT
public static final EventCategoryType WORKFLOW_PROCESS_EVENT
-
WORKFLOW_EVENT
public static final EventCategoryType WORKFLOW_EVENT
-
CASE_WORK_ITEM_EVENT
public static final EventCategoryType CASE_WORK_ITEM_EVENT
-
ACCESS_CERTIFICATION_EVENT
public static final EventCategoryType ACCESS_CERTIFICATION_EVENT
-
CERT_CAMPAIGN_EVENT
public static final EventCategoryType CERT_CAMPAIGN_EVENT
-
CERT_CAMPAIGN_STAGE_EVENT
public static final EventCategoryType CERT_CAMPAIGN_STAGE_EVENT
-
CERT_CASE_EVENT
public static final EventCategoryType CERT_CASE_EVENT
-
CASE_MANAGEMENT_EVENT
public static final EventCategoryType CASE_MANAGEMENT_EVENT
-
TASK_EVENT
public static final EventCategoryType TASK_EVENT
-
CUSTOM_EVENT
public static final EventCategoryType CUSTOM_EVENT
-
POLICY_RULE_EVENT
public static final EventCategoryType POLICY_RULE_EVENT
-
-
Method Detail
-
values
public static EventCategoryType[] 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 (EventCategoryType c : EventCategoryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventCategoryType 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 EventCategoryType fromValue(String v)
-
-