Interface IWorkflowExecutionPostProcessor

All Superinterfaces:
Serializable
All Known Implementing Classes:
SupplyDefaultServletResponsePostProcessor, SupplyDefaultWorkflowStatePostProcessor

public interface IWorkflowExecutionPostProcessor extends Serializable
Callback that is called after the workflow was executed, but before the final result is created. Lets you modify the workflow execution context, such as by supplying a default servlet response when none was set.
Since:
7.0.11
Author:
XIMA MEDIA GmbH
  • Method Details

    • postProcess

      void postProcess(IWorkflowExecutionPostProcessParams params) throws Exception
      Called just before the workflow completes.
      Parameters:
      params - Parameters with the workflow context and the current workflow result.
      Throws:
      Exception - When post processing step could not be applied. This will result in a workflow failure. Catch the exception youself if you do not wish for that to happen.