Enum PendingOperationExecutionStatusType

  • All Implemented Interfaces:
    Serializable, Comparable<PendingOperationExecutionStatusType>

    public enum PendingOperationExecutionStatusType
    extends Enum<PendingOperationExecutionStatusType>

    Java class for PendingOperationExecutionStatusType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="PendingOperationExecutionStatusType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="requested"/>
         <enumeration value="executionPending"/>
         <enumeration value="executing"/>
         <enumeration value="completed"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

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

      • values

        public static PendingOperationExecutionStatusType[] 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 (PendingOperationExecutionStatusType c : PendingOperationExecutionStatusType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static PendingOperationExecutionStatusType 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 name
        NullPointerException - if the argument is null
      • value

        public String value()