Enum Class EventCategoryType

java.lang.Object
java.lang.Enum<EventCategoryType>
com.evolveum.midpoint.xml.ns._public.common.common_3.EventCategoryType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<EventCategoryType>, Constable

public enum EventCategoryType extends Enum<EventCategoryType> implements TypeSafeEnum
TODO
  • Enum Constant Details

    • 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
    • ACTIVITY_EVENT

      public static final EventCategoryType ACTIVITY_EVENT
    • CUSTOM_EVENT

      public static final EventCategoryType CUSTOM_EVENT
    • POLICY_RULE_EVENT

      public static final EventCategoryType POLICY_RULE_EVENT
  • Method Details

    • values

      public static EventCategoryType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EventCategoryType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static EventCategoryType fromValue(String v)