Package de.xima.fc.logic.workflow
Interface IExtendedTriggeredWorkflowExecutionResult
-
public interface IExtendedTriggeredWorkflowExecutionResult
Extended data for aITriggeredWorkflowExecutionResult
that provides more data, but requires access to deeper system functionality. Only available on a master server, not on a frontend server or via the API provider; and not serializable.- Since:
- 8.2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITriggeredWorkflowExecutionResult
baseResult()
The base workflow execution result.IEventExecutionResult
eventExecutionResult()
If no workflow context was given, a workflow event gets triggered and the workflow is executed.
-
-
-
Method Detail
-
baseResult
ITriggeredWorkflowExecutionResult baseResult()
The base workflow execution result.- Returns:
- The base workflow execution result.
-
eventExecutionResult
IEventExecutionResult eventExecutionResult()
If no workflow context was given, a workflow event gets triggered and the workflow is executed. This will then return the result of the workflow event execution.Otherwise, a workflow event gets added to the current workflow task execution queue and this method will return null.
- Returns:
- The result of the workflow event execution.
-
-