Enum Class IntermediateEventState

java.lang.Object
java.lang.Enum<IntermediateEventState>
ch.ivyteam.ivy.workflow.IntermediateEventState
All Implemented Interfaces:
ch.ivyteam.ivy.persistence.IPersistentEnumeration, Serializable, Comparable<IntermediateEventState>, java.lang.constant.Constable

public enum IntermediateEventState extends Enum<IntermediateEventState> implements ch.ivyteam.ivy.persistence.IPersistentEnumeration
Since:
30.01.2008
API:
This is a public API.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    The intermediate event has been canceled.
    The intermediate event has occured but the system is not yet waiting on it.
    The intermediate event has been processed
    The intermediate event has been timeouted.
    The intermediate event has been timeouted and after that the event has been received and processed.
    The system is waiting for the intermediate event
  • Enum Constant Details

    • WAITING

      public static final IntermediateEventState WAITING

      The system is waiting for the intermediate event

      Database Value: 0

      API:
      This public API is available in Java.
    • PENDING

      public static final IntermediateEventState PENDING

      The intermediate event has occured but the system is not yet waiting on it. Maybe the system will later process the event. Usually the system is in this state if the answer from a 3rd party system is received before the intermediate event element in a process is reached.

      Database Value: 1

      API:
      This public API is available in Java.
    • PROCESSED

      public static final IntermediateEventState PROCESSED

      The intermediate event has been processed

      Database Value: 2

      API:
      This public API is available in Java.
    • TIMEOUTED

      public static final IntermediateEventState TIMEOUTED

      The intermediate event has been timeouted. The event was not received within the timeout time

      Database Value: 3

      API:
      This public API is available in Java.
    • TIMEOUTED_AND_PROCESSED

      public static final IntermediateEventState TIMEOUTED_AND_PROCESSED

      The intermediate event has been timeouted and after that the event has been received and processed. This state is only possible if IntermediateEventTimeoutAction.NOTHING is configured.

      Database Value: 4

      API:
      This public API is available in Java.
    • CANCELED

      public static final IntermediateEventState CANCELED

      The intermediate event has been canceled. This is the case if the task this intermediate event belongs to has been destroyed

      Database Value: 5

      See Also:
      API:
      This public API is available in Java.