Package ch.ivyteam.ivy.workflow
Enum IntermediateEventState
- java.lang.Object
-
- java.lang.Enum<IntermediateEventState>
-
- ch.ivyteam.ivy.workflow.IntermediateEventState
-
- All Implemented Interfaces:
ch.ivyteam.ivy.persistence.IPersistentEnumeration,Serializable,Comparable<IntermediateEventState>
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 CANCELEDThe intermediate event has been canceled.PENDINGThe intermediate event has occured but the system is not yet waiting on it.PROCESSEDThe intermediate event has been processedTIMEOUTEDThe intermediate event has been timeouted.TIMEOUTED_AND_PROCESSEDThe intermediate event has been timeouted and after that the event has been received and processed.WAITINGThe system is waiting for the intermediate event
-
-
-
Enum Constant Detail
-
WAITING
public static final IntermediateEventState WAITING
The system is waiting for the intermediate event- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
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.- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
PROCESSED
public static final IntermediateEventState PROCESSED
The intermediate event has been processed- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
TIMEOUTED
public static final IntermediateEventState TIMEOUTED
The intermediate event has been timeouted. The event was not received within the timeout time- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
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 ifIntermediateEventTimeoutAction.NOTHINGis configured.- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
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- See Also:
ITask.destroy(),ICase.destroy()- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-