Interface ICreateProtocolEntryAfterExecutionParams
-
public interface ICreateProtocolEntryAfterExecutionParams
Parameters that are passed to theisCreateProtocolEntryAfterExecution
method of aINodeHandler
to decide whether a protocol entry should be created.- Since:
- 8.0.1
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowNode
getNode()
Gets the node that was executed.IWorkflowNodeResult
getResult()
Gets the result of the node's execution, may be successful or unsuccessful.WorkflowTask
getTask()
Gets the task to which the executed node belongs.
-
-
-
Method Detail
-
getNode
WorkflowNode getNode()
Gets the node that was executed.- Returns:
- The node that was executed.
-
getResult
IWorkflowNodeResult getResult()
Gets the result of the node's execution, may be successful or unsuccessful.- Returns:
- The result of the node's execution, may be successful or unsuccessful.
-
getTask
WorkflowTask getTask()
Gets the task to which the executed node belongs.- Returns:
- The task to which the executed node belongs.
-
-