Uses of Interface
de.xima.fc.interfaces.workflow.nodes.INodeWithName
-
-
Uses of INodeWithName in de.xima.fc.interfaces.workflow
Methods in de.xima.fc.interfaces.workflow that return types with arguments of type INodeWithName Modifier and Type Method Description List<INodeWithName>
IWorkflowProvider. getAllNodesOfType(String type)
List<INodeWithName>
IWorkflowProvider. getAttachmentProvidingParents()
Returns a list of all nodes that are parents of the currently selected node n and that provide attachment to the currently selected node.List<INodeWithName>
IWorkflowProvider. getAttachmentProvidingParents(NodeKey nodeKey)
Returns a list of all nodes that are parents of the given node and that provides or creates attachments, seegetAttachmentValueDescriptor
).List<INodeWithName>
IWorkflowProvider. getErrorCompletionPredecessors()
A list of all nodes that have finished execution and that precede the currently selected node n; i.e.List<INodeWithName>
IWorkflowProvider. getErrorCompletionPredecessors(NodeKey key)
A list of all nodes that have finished execution and that precede the given node n; i.e.List<INodeWithName>
IWorkflowProvider. getNormalCompletionAttachmentProvidingPredecessors()
Returns a list of all predecessors of the currently selected node N, that have finished execution and that provide attachments.List<INodeWithName>
IWorkflowProvider. getNormalCompletionAttachmentProvidingPredecessors(NodeKey key)
Returns a list of all predecessors of the given node N, that have finished execution and that provide attachments.List<INodeWithName>
IWorkflowProvider. getNormalCompletionPredecessors()
A list of all nodes that have finished execution and that precede the currently selected node n; i.e.List<INodeWithName>
IWorkflowProvider. getNormalCompletionPredecessors(NodeKey key)
A list of all nodes that have finished execution and that precede the given node n; i.e.List<INodeWithName>
IWorkflowProvider. getParentControlTransferTargets(NodeKey key, String... controlTransferTypes)
List<INodeWithName>
IWorkflowProvider. getParentControlTransferTargets(String... controlTransferTypes)
List<INodeWithName>
IWorkflowProvider. getParents()
List<INodeWithName>
IWorkflowProvider. getParents(NodeKey key)
default List<INodeWithName>
IWorkflowProvider. getPredecessors()
Deprecated.default List<INodeWithName>
IWorkflowProvider. getPredecessors(NodeKey key)
Deprecated. -
Uses of INodeWithName in de.xima.fc.interfaces.workflow.nodes
Subinterfaces of INodeWithName in de.xima.fc.interfaces.workflow.nodes Modifier and Type Interface Description interface
IFileProvidingNodeWithName
A reference to a workflow node that provides files, such as those returned byIWorkflowProvider.getNormalCompletionProvidingPredecessors()
. -
Uses of INodeWithName in de.xima.fc.workflow.designer.bean
-
Uses of INodeWithName in de.xima.fc.workflow.designer.helper
-
Uses of INodeWithName in de.xima.fc.workflow.processor.logic
Methods in de.xima.fc.workflow.processor.logic that return types with arguments of type INodeWithName Modifier and Type Method Description static List<INodeWithName>
WorkflowProviderHelper. computeAllNodesOfType(WorkflowElementIndex elementIndex, String type)
static List<INodeWithName>
WorkflowProviderHelper. computeAttachmentProvidingParents(WorkflowNode node, Mandant client, Map<NodeKey,IWorkflowElementWithDeserializedModel<?,WorkflowNode>> index)
Finds all parent nodes for the given target node and that can provide attachments to the given node, viaIExecutionResultDescriptor.getCurrentAttachmentValueDescriptor()
.static List<INodeWithName>
WorkflowProviderHelper. computeCompletionAttachmentProvidingPredecessors(IBaseEnvironmentData environmentData, IWorkflowFlowAnalysis analysis, NodeKey target, WorkflowElementIndex index, FlowGraphFilter.Backward filter)
Finds all previous nodes that can provide attachments for the given target node.static List<INodeWithName>
WorkflowProviderHelper. computeCompletionPredecessors(IBaseEnvironmentData environmentData, IWorkflowFlowAnalysis analysis, NodeKey target, WorkflowElementIndex index, FlowGraphFilter.Backward filter)
Finds all previous nodes for the given target node, that have finished execution.static List<INodeWithName>
WorkflowProviderHelper. computeNodeNames(Mandant client, FlowchartElementIndex elementIndex, Map<ElementKey,com.alibaba.fastjson.JSONObject> paramsMap, Iterable<NodeKey> nodeKeys)
static List<INodeWithName>
WorkflowProviderHelper. computeParentControlTransferTargets(WorkflowNode node, Mandant client, Map<NodeKey,IWorkflowElementWithDeserializedModel<?,WorkflowNode>> index, String[] targetTypes)
Finds all parent nodes for the given target node, filtered to those parent nodes that support one of the given control transfer types.static List<INodeWithName>
WorkflowProviderHelper. computeParents(WorkflowNode node, Mandant client, Map<NodeKey,IWorkflowElementWithDeserializedModel<?,WorkflowNode>> index)
Finds all parent nodes for the given target node.Method parameters in de.xima.fc.workflow.processor.logic with type arguments of type INodeWithName Modifier and Type Method Description static List<? extends de.xima.cmn.validation.spec.IChoiceEntry<NodeKey>>
WorkflowProviderHelper. createNodeSelectItems(List<INodeWithName> nodes)
Creates select items for the UI from the given list of workflow node. -
Uses of INodeWithName in de.xima.fc.workflow.processor.logic.validation
-
Uses of INodeWithName in de.xima.fc.workflow.processor.model
Classes in de.xima.fc.workflow.processor.model that implement INodeWithName Modifier and Type Class Description class
FileProvidingNodeWithName
POJO implementation ofIFileProvidingNodeWithName
.class
NodeWithName
POJO implementation ofINodeWithName
.
-