Interface IWorkflowExecutionPostProcessParams
public interface IWorkflowExecutionPostProcessParams
- Since:
- 7.0.11
- Author:
- XIMA MEDIA GmbH
-
Method Summary
Modifier and TypeMethodDescriptionbooleanChecks if the form record was already deleted by the workflow.
-
Method Details
-
getResult
ITaskExecutionResult getResult()- Returns:
- The current result of the workflow. Note that this may still be changed by later post processors.
-
getWorkflowExecutionContext
IWorkflowExecutionContext getWorkflowExecutionContext()- Returns:
- Current workflow execution context.
-
isWasFormRecordDeleted
boolean isWasFormRecordDeleted()Checks if the form record was already deleted by the workflow. If so, you can still access the form record via thegetWorkflowExecutionContext(), but it exists only in memory and will not be persisted to the database.- Returns:
- True if the form record was deleted by the workflow, false otherwise.
- Since:
- 8.5.5
-