Package org.jbpm.services.api.admin
Interface ProcessNode
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ProcessNodeImpl
public interface ProcessNode extends Serializable
Describes process node taken from process definition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getNodeId()
Returns unique id of the nodeString
getNodeName()
Returns name of the nodeString
getNodeType()
Returns type of the nodeString
getProcessId()
Returns process id node belongs to
-
-
-
Method Detail
-
getNodeName
String getNodeName()
Returns name of the node- Returns:
- node name
-
getNodeId
long getNodeId()
Returns unique id of the node- Returns:
- node id
-
getNodeType
String getNodeType()
Returns type of the node- Returns:
- node type
-
getProcessId
String getProcessId()
Returns process id node belongs to- Returns:
- process id
-
-