Class ProcessEndNodeDefinition
- java.lang.Object
-
- com.aquima.interactions.process.impl.nodes.NodeDefinition
-
- com.aquima.interactions.process.impl.nodes.ProcessEndNodeDefinition
-
- All Implemented Interfaces:
IProcessEndNodeDefinition
,IProcessNodeDefinition
public class ProcessEndNodeDefinition extends NodeDefinition implements IProcessEndNodeDefinition
This class defines an end node in a process definition.- Since:
- 9.1
- Author:
- A. Pragt
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
ProcessEndNodeDefinition(GUID id, ProcessExit exitState)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName()
This method returns a name for the node in a readable format that can be used to identify the node.ProcessExit
getExitState()
This method returns the name of the exit state.String[]
getExitStates()
This method returns the names of the exits that are connected to a next node.-
Methods inherited from class com.aquima.interactions.process.impl.nodes.NodeDefinition
addNextNode, getExpirationDefinition, getId, getNextNode, getNextNode, getNextNodeSafe, setExpirationDefinition
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.aquima.interactions.process.nodes.IProcessNodeDefinition
getExpirationDefinition, getId, getNextNode, getNextNode
-
-
-
-
Constructor Detail
-
ProcessEndNodeDefinition
protected ProcessEndNodeDefinition(GUID id, ProcessExit exitState)
-
-
Method Detail
-
getExitState
public ProcessExit getExitState()
Description copied from interface:IProcessEndNodeDefinition
This method returns the name of the exit state. The exit state name may be null for group end nodes.- Specified by:
getExitState
in interfaceIProcessEndNodeDefinition
- Returns:
- the name of the exit state.
-
getExitStates
public final String[] getExitStates()
Description copied from class:NodeDefinition
This method returns the names of the exits that are connected to a next node.- Specified by:
getExitStates
in interfaceIProcessNodeDefinition
- Overrides:
getExitStates
in classNodeDefinition
- Returns:
- the names of the exits that are connected to a next node.
-
getDisplayName
public String getDisplayName()
Description copied from interface:IProcessNodeDefinition
This method returns a name for the node in a readable format that can be used to identify the node.- Specified by:
getDisplayName
in interfaceIProcessNodeDefinition
- Returns:
- a name for the node in a readable format that can be used to identify the node.
-
-