Uses of Interface
de.xima.fc.interfaces.workflow.analysis.IWorkflowNodeFlowAnalyzer
-
-
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.interfaces.workflow.mixin
Subinterfaces of IWorkflowNodeFlowAnalyzer in de.xima.fc.interfaces.workflow.mixin Modifier and Type Interface Description interface
IBeanValidatingNode<TData>
Mixin that implementsIElementHandler.validateLocal(IElementLocalValidationParams)
by performing a bean validation on the node's properties model.interface
IExecutingLikeActionNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that have no children and simply execute some business logic.interface
IExecutingLikeBinarySelectionNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that execute one of its two children based on a test, such as an if-else node.interface
IExecutingLikeExceptionHandlerNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that attempt to execute its child, and run another child if the child completed abruptly by throwing an exception, such as a try-catch(-finally) block.interface
IExecutingLikeReturningActionNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that have no children and always complete abruptly by either throwing an exception or issuing a return statement.interface
IExecutingLikeReturnNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that have no children and always complete abruptly by issuing a return statement.interface
IExecutingLikeSequenceNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that have no children and always complete abruptly by issuing a return statement.interface
IExecutingLikeThrowNode<TData>
Mixin with the implementation ofcreateFlowGraph(ICreateFlowGraphParams)
for logic handlers that have no children and always complete abruptly by throwing an exception.interface
IFileProviding<TData>
Mixin interface for all node handlers that require files from previous actions or from upload elements.interface
IOfficialHelpPageNode<TData>
Mixin for nodes that implementsIElementHandler.getHelpPageLocation(Locale)
by returning a link to the official help pages.interface
IResultlessNode<TData>
Mixin for nodes that neither return a result nor do throw an error.interface
ISemverUpdatingNode<TData>
AISemverUpdating
forWorkflowNode
handlers.interface
ISingleNodePrototype<TData>
Mixin that implementsINodeHandler.getNodePrototypes(IGetNodePrototypesParams)
for cases when a handler only wishes to provide a single prototype. -
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.interfaces.workflow.nodes
Subinterfaces of IWorkflowNodeFlowAnalyzer in de.xima.fc.interfaces.workflow.nodes Modifier and Type Interface Description interface
INodeHandler<TData>
All node handlers must be thread-safe. -
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.designer.mixin
Subinterfaces of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.designer.mixin Modifier and Type Interface Description interface
ISingleBaseActionBuiltinNodePrototype<TData extends BaseActionProps>
Mixin that extendsISingleBaseActionNodePrototype
for builtin node types.interface
ISingleBuiltinNodePrototype<TData>
Mixin that extendsISingleNodePrototype
for builtin node types. -
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.designer.registry.nodes
-
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.mixin
Subinterfaces of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.mixin Modifier and Type Interface Description interface
IBaseActionNode<TData extends BaseActionProps>
Node logic handler for actions with a properties model that inherit fromBaseActionProps
.interface
IBuiltinNodeType<TData>
Mixin for all built-in workflow node handlers.interface
IDefaultClientHandlerNode<TData extends BaseActionProps>
Node handler for nodes that wish to register the default client-side handlers.interface
IPluginActionNodeHandler<TData extends BaseActionProps>
Mixin meant forIPluginWorkflowNode
plugins that only wish to provide a workflow action that executes some business logic.interface
ISingleBaseActionNodePrototype<TData extends BaseActionProps>
A mixin for all nodes that areISingleNodePrototype
and additionally use a properties model that extends fromBaseActionProps
.Classes in de.xima.fc.workflow.mixin that implement IWorkflowNodeFlowAnalyzer Modifier and Type Class Description class
APluginActionNodeHandler<TData extends BaseActionProps>
Abstract base class meant forIPluginWorkflowNode
plugins that only wish to provide a workflow action that executes some business logic. -
Uses of IWorkflowNodeFlowAnalyzer in de.xima.fc.workflow.processor.logic.analysis
Classes in de.xima.fc.workflow.processor.logic.analysis that implement IWorkflowNodeFlowAnalyzer Modifier and Type Class Description class
FallbackExecutionAnalyzer
Fallback execution analyzer when no logic handler could be found for a node.Methods in de.xima.fc.workflow.processor.logic.analysis that return IWorkflowNodeFlowAnalyzer Modifier and Type Method Description static <TData> IWorkflowNodeFlowAnalyzer<TData>
FallbackExecutionAnalyzer. getInstance()
-