Interface WorkItem
-
public interface WorkItem
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classWorkItem.Descriptor
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StringgetId()StringgetName()StringgetNodeInstanceId()Map<String,Object>getParameters()StringgetPhase()StringgetPhaseStatus()StringgetProcessInstanceId()StringgetReferenceId()Reference id gives a complete path like id to this work item.Map<String,Object>getResults()intgetState()default WorkItem.DescriptortoMap()
-
-
-
Method Detail
-
getId
String getId()
-
getNodeInstanceId
String getNodeInstanceId()
-
getProcessInstanceId
String getProcessInstanceId()
-
getName
String getName()
-
getState
int getState()
-
getPhase
String getPhase()
-
getPhaseStatus
String getPhaseStatus()
-
getReferenceId
String getReferenceId()
Reference id gives a complete path like id to this work item. It will represent a complete navigation to work item traversing subprocesses
- root level work itemName/ID
- first subprocess level work itemsubprocess-name/subprocess-id/Name/ID
- second subprocess level work itemsubprocess-name/subprocess-id/subprocess-name2/subprocess-id2/Name/ID- Returns:
- returns complete path like reference id of this work item
-
toMap
default WorkItem.Descriptor toMap()
-
-