Package com.flowable.platform.api.work
Interface WorkInstanceInfo
-
- All Known Subinterfaces:
HistoricWorkInstance
,WorkInstance
- All Known Implementing Classes:
BaseWorkInstanceImpl
,HistoricWorkInstanceImpl
,WorkInstanceImpl
public interface WorkInstanceInfo
A common interface for root process and case instances. Used only for querying data. This is shared between runtime and historic data.- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBusinessKey()
The business key of the instanceString
getBusinessStatus()
The user provided business status for this process instance.String
getDefinitionCategory()
The definition category of the instanceString
getDefinitionDeploymentId()
The definition deployment id of the instanceString
getDefinitionId()
The definition id of the instanceString
getDefinitionKey()
The definition key of the instanceString
getDefinitionName()
The definition name of the instanceInteger
getDefinitionVersion()
The definition version of the instanceString
getId()
The id of the instanceString
getName()
The name of the instanceDate
getStartTime()
The time the instance was startedString
getStartUserId()
The id of the user that started the instanceString
getState()
The state of the instance.String
getTenantId()
The tenant id of the instanceCollection<Translation>
getTranslations()
The translations for the work instance.String
getType()
The type of the instance, e.g.
-
-
-
Method Detail
-
getId
String getId()
The id of the instance
-
getName
String getName()
The name of the instance
-
getBusinessKey
String getBusinessKey()
The business key of the instance
-
getBusinessStatus
String getBusinessStatus()
The user provided business status for this process instance.
-
getTenantId
String getTenantId()
The tenant id of the instance
-
getType
String getType()
-
getStartTime
Date getStartTime()
The time the instance was started
-
getStartUserId
String getStartUserId()
The id of the user that started the instance
-
getState
String getState()
The state of the instance. Can benull
.
-
getDefinitionId
String getDefinitionId()
The definition id of the instance
-
getDefinitionName
String getDefinitionName()
The definition name of the instance
-
getDefinitionKey
String getDefinitionKey()
The definition key of the instance
-
getDefinitionVersion
Integer getDefinitionVersion()
The definition version of the instance
-
getDefinitionDeploymentId
String getDefinitionDeploymentId()
The definition deployment id of the instance
-
getDefinitionCategory
String getDefinitionCategory()
The definition category of the instance
-
getTranslations
Collection<Translation> getTranslations()
The translations for the work instance.
-
-