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 StringgetBusinessKey()The business key of this process instance.booleanisCompleted()Returnstrueif 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
trueif the case instance is completed.Note: If this case execution is not the case instance, it will always return
false. 
 - 
 
 -