Enum Class OperationKindType

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

public enum OperationKindType extends Enum<OperationKindType> implements TypeSafeEnum
Kind of operation (captured by OperationResult). HIGHLY EXPERIMENTAL. Maybe it will be scrapped in the near future.
  • Enum Constant Details

    • CLOCKWORK_EXECUTION

      public static final OperationKindType CLOCKWORK_EXECUTION
      Whole execution (run) of the clockwork.
    • CLOCKWORK_CLICK

      public static final OperationKindType CLOCKWORK_CLICK
      Single click of the clockwork.
    • PROJECTOR_EXECUTION

      public static final OperationKindType PROJECTOR_EXECUTION
      Execution of the projector.
    • RESOURCE_OBJECT_CONSTRUCTION_EVALUATION

      public static final OperationKindType RESOURCE_OBJECT_CONSTRUCTION_EVALUATION
      Evaluation of a resource object construction.
    • MAPPING_EVALUATION

      public static final OperationKindType MAPPING_EVALUATION
      Evaluation of a mapping.
    • ASSIGNMENT_EVALUATION

      public static final OperationKindType ASSIGNMENT_EVALUATION
      Evaluation of an assignment.
    • SCRIPT_EVALUATION

      public static final OperationKindType SCRIPT_EVALUATION
      Evaluation of a script.
    • REPOSITORY_CACHE

      public static final OperationKindType REPOSITORY_CACHE
      Repository cache operation.
    • REPOSITORY

      public static final OperationKindType REPOSITORY
      Repository operation.
    • FOCUS_LOAD_CHECK

      public static final OperationKindType FOCUS_LOAD_CHECK
      Check whether focus should be loaded. TODO really?
    • FOCUS_LOAD

      public static final OperationKindType FOCUS_LOAD
      Focus load check that resulted in focus being loaded. TODO really?
    • PROJECTION_LOAD

      public static final OperationKindType PROJECTION_LOAD
      Projection load.
    • FULL_PROJECTION_LOAD

      public static final OperationKindType FULL_PROJECTION_LOAD
      Full projection load.
    • FOCUS_CHANGE_EXECUTION

      public static final OperationKindType FOCUS_CHANGE_EXECUTION
      Execution of focus change.
    • PROJECTION_CHANGE_EXECUTION

      public static final OperationKindType PROJECTION_CHANGE_EXECUTION
      Execution of projection change.
    • PROVISIONING

      public static final OperationKindType PROVISIONING
      Provisioning API operation.
    • CONNECTOR

      public static final OperationKindType CONNECTOR
      Connector operation.
    • OTHER

      public static final OperationKindType OTHER
      Other kind of operation.
    • MODEL_AUDIT

      public static final OperationKindType MODEL_AUDIT
      Recording audit in model.
  • Method Details

    • values

      public static OperationKindType[] 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 OperationKindType 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 OperationKindType fromValue(String v)