Package org.jbpm.services.api.model
Interface NodeInstanceDesc
-
- All Known Implementing Classes:
NodeInstanceDesc
public interface NodeInstanceDesc
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetConnection()Returns the node instance connection.DategetDataTimeStamp()Returns the node instance timestamp.StringgetDeploymentId()Returns the node instance deployment id.LonggetId()Returns the node instance id.StringgetName()Returns the node instance name.StringgetNodeContainerId()Returns the node instance container id.StringgetNodeId()Returns the node instance node id.StringgetNodeType()Returns the node instance node type.LonggetProcessInstanceId()Returns the process instance id.LonggetReferenceId()Returns the node instance reference id.IntegergetSlaCompliance()Returns the node instance SLA complience.DategetSlaDueDate()Returns the node instance SLA due date.LonggetWorkItemId()Returns the node instance workitem id.booleanisCompleted()Returns the node instance completion.
-
-
-
Method Detail
-
getId
Long getId()
Returns the node instance id.- Returns:
- id
-
getName
String getName()
Returns the node instance name.- Returns:
- name
-
getDeploymentId
String getDeploymentId()
Returns the node instance deployment id.- Returns:
- deployment id
-
getProcessInstanceId
Long getProcessInstanceId()
Returns the process instance id.- Returns:
- process instance id
-
getDataTimeStamp
Date getDataTimeStamp()
Returns the node instance timestamp.- Returns:
- timestamp
-
getNodeType
String getNodeType()
Returns the node instance node type.- Returns:
- node type
-
getNodeId
String getNodeId()
Returns the node instance node id.- Returns:
- node id
-
isCompleted
boolean isCompleted()
Returns the node instance completion.- Returns:
- completion
-
getConnection
String getConnection()
Returns the node instance connection.- Returns:
- connection
-
getWorkItemId
Long getWorkItemId()
Returns the node instance workitem id.- Returns:
- workitem id
-
getReferenceId
Long getReferenceId()
Returns the node instance reference id.- Returns:
- reference id
-
getNodeContainerId
String getNodeContainerId()
Returns the node instance container id.- Returns:
- container id
-
getSlaDueDate
Date getSlaDueDate()
Returns the node instance SLA due date.- Returns:
- SLA due date
-
getSlaCompliance
Integer getSlaCompliance()
Returns the node instance SLA complience.- Returns:
- SLA compliance
-
-