Interface IBaseWorkflowExecutionContext
-
- All Superinterfaces:
AutoCloseable
,Closeable
- All Known Subinterfaces:
IWorkflowExecutionContext
,IWorkflowProcessingContext
- All Known Implementing Classes:
WorkflowExecutionContext
,WorkflowProcessingContext
public interface IBaseWorkflowExecutionContext extends Closeable
Context object that contains data related to the current execution of the workflow processing. It is the context for the entire workflow processing and is created by the system and is closed automatically once workflow processing finishes.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IWorkflowExecutionEnvironmentData
env()
IWorkflowPlaceholderHandler
placeholder()
-
-
-
Method Detail
-
env
IWorkflowExecutionEnvironmentData env()
- Returns:
- Data from the current workflow execution, such as the form for which the workflow is executed, and the current client.
-
placeholder
IWorkflowPlaceholderHandler placeholder()
- Returns:
- A handler for replacing placeholders in strings, using the current workflow execution context. This is a shortcut for the methods provided by {code de.xima.fc.placeholder.PlaceholderReplacer} that supplies the required parameters automatically.
-
-