Package org.flowable.cmmn.api.runtime
Interface CaseInstance
public interface CaseInstance
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionReturns the case variables if requested in the case instance querygetId()
getName()
getState()
boolean
void
setLocalizedName
(String localizedName) Sets an optional localized name for the case.
-
Method Details
-
getId
String getId() -
getParentId
String getParentId() -
getBusinessKey
String getBusinessKey() -
getBusinessStatus
String getBusinessStatus() -
getName
String getName() -
getCaseDefinitionId
String getCaseDefinitionId() -
getCaseDefinitionKey
String getCaseDefinitionKey() -
getCaseDefinitionName
String getCaseDefinitionName() -
getCaseDefinitionVersion
Integer getCaseDefinitionVersion() -
getCaseDefinitionDeploymentId
String getCaseDefinitionDeploymentId() -
getState
String getState() -
getStartTime
Date getStartTime() -
getStartUserId
String getStartUserId() -
getLastReactivationTime
Date getLastReactivationTime() -
getLastReactivationUserId
String getLastReactivationUserId() -
getCallbackId
String getCallbackId() -
getCallbackType
String getCallbackType() -
getReferenceId
String getReferenceId() -
getReferenceType
String getReferenceType() -
isCompletable
boolean isCompletable() -
getTenantId
String getTenantId() -
getCaseVariables
Returns the case variables if requested in the case instance query -
setLocalizedName
Sets an optional localized name for the case.
-