Enum Class PendingOperationExecutionStatusType

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

public enum PendingOperationExecutionStatusType extends Enum<PendingOperationExecutionStatusType> implements TypeSafeEnum
Execution status. This property indicates in which execution stage the operation is, e.g. whether it is requested, being executed, completed, and so on.
  • Enum Constant Details

    • REQUESTED

      public static final PendingOperationExecutionStatusType REQUESTED
      Operation is requested. Operation request is recorded. The operation is in the preparation phase and it is not being execute yet.
    • EXECUTION_PENDING

      public static final PendingOperationExecutionStatusType EXECUTION_PENDING
      Operation execution is pending. The operation is prepared but it is not executed yet. The operation waits for the execution process to pick it up, waits for a condition or signal, etc. For manual operations this means that the case/ticket is not created yet.
    • EXECUTING

      public static final PendingOperationExecutionStatusType EXECUTING
      Operation is being executed. The execution process is running, manual execution task is created and still open and so on. The execution may take quite a long time.
    • COMPLETED

      public static final PendingOperationExecutionStatusType COMPLETED
      Execution is complete. Operation is not executed any more. For manual operations this means that the case/ticket is closed. The operation may be successful or it may have ended up with an error. This information is in another property. This state indicates only that the operation execution is done. It does NOT indicate success or failure.
  • Method Details

    • values

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