Package org.camunda.bpm.engine.runtime
Interface CaseInstance
-
- All Superinterfaces:
CaseExecution
- All Known Implementing Classes:
CaseExecutionEntity
public interface CaseInstance extends CaseExecution
- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBusinessKey()
The business key of this process instance.boolean
isCompleted()
Returnstrue
if the case instance is completed.-
Methods inherited from interface org.camunda.bpm.engine.runtime.CaseExecution
getActivityDescription, getActivityId, getActivityName, getActivityType, getCaseDefinitionId, getCaseInstanceId, getId, getParentId, getTenantId, isActive, isAvailable, isDisabled, isEnabled, isRequired, isTerminated
-
-
-
-
Method Detail
-
getBusinessKey
String getBusinessKey()
The business key of this process instance.
-
isCompleted
boolean isCompleted()
Returns
true
if the case instance is completed.Note: If this case execution is not the case instance, it will always return
false
.
-
-