Uses of Interface
de.xima.fc.interfaces.workflow.execution.INormalCompletionResult
-
-
Uses of INormalCompletionResult in de.xima.fc.interfaces.workflow.execution
Methods in de.xima.fc.interfaces.workflow.execution that return INormalCompletionResult Modifier and Type Method Description INormalCompletionResult
IWorkflowActionExecutor. execute()
Executes the workflow action, and creates the result.INormalCompletionResult
IWorkflowExecutor. execute(WorkflowNode node)
Executes the given node.INormalCompletionResult
IWorkflowExecutor. executeChild(WorkflowNode parentNode, int childIndex)
Executes the given child of the node.INormalCompletionResult
IWorkflowNodeResult. getNormalCompletionResult()
-
Uses of INormalCompletionResult in de.xima.fc.interfaces.workflow.nodes
Methods in de.xima.fc.interfaces.workflow.nodes that return INormalCompletionResult Modifier and Type Method Description INormalCompletionResult
INodeHandler. execute(INodeExecutionParams<TData> params)
Executes the given workflow node. -
Uses of INormalCompletionResult in de.xima.fc.workflow.designer.registry.nodes
-
Uses of INormalCompletionResult in de.xima.fc.workflow.executor
-
Uses of INormalCompletionResult in de.xima.fc.workflow.mixin
Methods in de.xima.fc.workflow.mixin that return INormalCompletionResult Modifier and Type Method Description INormalCompletionResult
IPluginActionNodeHandler. execute(INodeExecutionParams<TData> params)
Executes the business logic of this action plugin, and returns the values made available by this action.default INormalCompletionResult
IPluginConditionNodeHandler. execute(INodeExecutionParams<TData> params)
Evaluates the condition of this plugin, and executes either the if or else branch based upon the result.default INormalCompletionResult
IPluginDoUntilLoopNodeHandler. execute(INodeExecutionParams<TData> params)
Evaluates the do until loop test of this plugin, and executes the loop body for as long as the do until loop test holds true.default INormalCompletionResult
IPluginWhileLoopNodeHandler. execute(INodeExecutionParams<TData> params)
Evaluates the while loop test of this plugin, and executes the loop body for as long as the while loop test holds true. -
Uses of INormalCompletionResult in de.xima.fc.workflow.processor.model
Classes in de.xima.fc.workflow.processor.model that implement INormalCompletionResult Modifier and Type Class Description class
NormalCompletionResult
POJO implementation ofINormalCompletionResult
.Methods in de.xima.fc.workflow.processor.model that return INormalCompletionResult Modifier and Type Method Description static INormalCompletionResult
NormalCompletionResult. empty()
INormalCompletionResult
WorkflowNodeResult. getNormalCompletionResult()
Methods in de.xima.fc.workflow.processor.model with parameters of type INormalCompletionResult Modifier and Type Method Description static IWorkflowNodeResult
WorkflowNodeResult. normal(INormalCompletionResult result)
-