Interface WorkflowProcess
-
- All Superinterfaces:
NodeContainer,Process,Serializable
public interface WorkflowProcess extends Process, NodeContainer
A WorkflowProcess is a type of Process that uses a flow chart (as a collection of Nodes and Connections) to model the business logic.
-
-
Field Summary
Fields Modifier and Type Field Description static StringNONE_VISIBILITYstatic StringPRIVATE_VISIBILITYstatic StringPUBLIC_VISIBILITY-
Fields inherited from interface io.automatiko.engine.api.definition.process.Process
FUNCTION_FLOW_TYPE, FUNCTION_TYPE, WORKFLOW_TYPE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Node>getNodesRecursively()StringgetVisibility()-
Methods inherited from interface io.automatiko.engine.api.definition.process.NodeContainer
getNode, getNodes
-
Methods inherited from interface io.automatiko.engine.api.definition.process.Process
getId, getMetaData, getName, getPackageName, getResource, getType, getVersion, setResource
-
-
-
-
Field Detail
-
PUBLIC_VISIBILITY
static final String PUBLIC_VISIBILITY
- See Also:
- Constant Field Values
-
PRIVATE_VISIBILITY
static final String PRIVATE_VISIBILITY
- See Also:
- Constant Field Values
-
NONE_VISIBILITY
static final String NONE_VISIBILITY
- See Also:
- Constant Field Values
-
-