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 longgetNodeId()Returns unique id of the nodeStringgetNodeName()Returns name of the nodeStringgetNodeType()Returns type of the nodeStringgetProcessId()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
-
-