Uses of Interface
de.xima.fc.interfaces.workflow.execution.INodeExecutionData
-
Packages that use INodeExecutionData Package Description de.xima.fc.interfaces.workflow.execution de.xima.fc.workflow.itemlist de.xima.fc.workflow.mixin de.xima.fc.workflow.model.loop_data -
-
Uses of INodeExecutionData in de.xima.fc.interfaces.workflow.execution
Subinterfaces of INodeExecutionData in de.xima.fc.interfaces.workflow.execution Modifier and Type Interface Description interface
IForEachLoopData
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
.static interface
IForEachLoopData.Attachments
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by an attachments item source.static interface
IForEachLoopData.CharacterSeparatedValues
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a character separated values item source.static interface
IForEachLoopData.FieldValues
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a field values item source.static interface
IForEachLoopData.Files
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a files item source.static interface
IForEachLoopData.FormElementRepetitions
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a form element repetitions value item source.static interface
IForEachLoopData.JsonValue
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a JSON value item source.static interface
IForEachLoopData.RowsOfCharacterSeparatedValues
TheINodeExecutionData
published by theEWorkflowNodeType.FC_FOR_EACH_LOOP
when iterating over items provided by a rows of character separated values item source.interface
IFormElementFieldValueContextData
INodeExecutionData
for nodes that wish to enter a form element field value index context during their execution.interface
IFormElementRepetitionContextData
INodeExecutionData
for nodes that wish to enter a form element repetition context during their execution.interface
ILoopNodeData
Base interface for data provided by workflow nodes that represent a loop.Methods in de.xima.fc.interfaces.workflow.execution with type parameters of type INodeExecutionData Modifier and Type Method Description <T extends INodeExecutionData>
List<T>IWorkflowVariableHandler. getExecutionDataForCurrentNodeStack(Class<T> type)
Each node may provide additional data viaIWorkflowExecutor.provideExecutionData(WorkflowNode, INodeExecutionData)
that is available while the node is executed.default <T extends INodeExecutionData>
Iterable<T>IWorkflowVariableHandler. getExecutionDataForNode(WorkflowNode node, Class<T> type)
Same asIWorkflowVariableHandler.getExecutionDataForNode(WorkflowNode)
, but filters the results to the given type.Methods in de.xima.fc.interfaces.workflow.execution that return types with arguments of type INodeExecutionData Modifier and Type Method Description List<INodeExecutionData>
IWorkflowVariableHandler. getExecutionDataForNode(WorkflowNode node)
Each node may provide additional data viaIWorkflowExecutor.provideExecutionData(WorkflowNode, INodeExecutionData)
that is available while the node is executed.Methods in de.xima.fc.interfaces.workflow.execution with parameters of type INodeExecutionData Modifier and Type Method Description default void
IWorkflowExecutor. provideExecutionData(WorkflowNode node, INodeExecutionData data)
Sets additional data available while the node is executed , which can be accessed viagetExecutionDataForNode(node)
.Method parameters in de.xima.fc.interfaces.workflow.execution with type arguments of type INodeExecutionData Modifier and Type Method Description void
IWorkflowExecutor. provideExecutionData(WorkflowNode node, Iterable<? extends INodeExecutionData> data)
Sets additional data available while the node is executed , which can be accessed viagetExecutionDataForNode(node)
. -
Uses of INodeExecutionData in de.xima.fc.workflow.itemlist
Methods in de.xima.fc.workflow.itemlist that return INodeExecutionData Modifier and Type Method Description INodeExecutionData
ItemData. getNodeExecutionData()
Methods in de.xima.fc.workflow.itemlist with parameters of type INodeExecutionData Modifier and Type Method Description ItemData.Builder
ItemData.Builder. nodeExecutionData(INodeExecutionData nodeExecutionData)
Sets additional data to make available while the loop body is executed with the current value. -
Uses of INodeExecutionData in de.xima.fc.workflow.mixin
Methods in de.xima.fc.workflow.mixin that return INodeExecutionData Modifier and Type Method Description default INodeExecutionData
IWorkflowLoopDataProviding. getLoopData()
-
Uses of INodeExecutionData in de.xima.fc.workflow.model.loop_data
-