Class CaseInstanceInfo
- java.lang.Object
-
- com.flowable.platform.service.caze.CaseInstanceInfo
-
public class CaseInstanceInfo extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected org.flowable.cmmn.api.runtime.CaseInstance
caseInstance
protected boolean
historic
protected org.flowable.cmmn.api.history.HistoricCaseInstance
historicCaseInstance
-
Constructor Summary
Constructors Constructor Description CaseInstanceInfo(org.flowable.cmmn.api.history.HistoricCaseInstance historicCaseInstance)
CaseInstanceInfo(org.flowable.cmmn.api.runtime.CaseInstance caseInstance)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCaseDefinitionId()
org.flowable.cmmn.api.runtime.CaseInstance
getCaseInstance()
java.lang.String
getCaseInstanceId()
org.flowable.cmmn.api.history.HistoricCaseInstance
getHistoricCaseInstance()
java.lang.String
getTenantId()
boolean
isHistoric()
void
setCaseInstance(org.flowable.cmmn.api.runtime.CaseInstance caseInstance)
void
setHistoric(boolean historic)
void
setHistoricCaseInstance(org.flowable.cmmn.api.history.HistoricCaseInstance historicCaseInstance)
-
-
-
Method Detail
-
getCaseInstanceId
public java.lang.String getCaseInstanceId()
-
getCaseDefinitionId
public java.lang.String getCaseDefinitionId()
-
getTenantId
public java.lang.String getTenantId()
-
getCaseInstance
public org.flowable.cmmn.api.runtime.CaseInstance getCaseInstance()
-
setCaseInstance
public void setCaseInstance(org.flowable.cmmn.api.runtime.CaseInstance caseInstance)
-
getHistoricCaseInstance
public org.flowable.cmmn.api.history.HistoricCaseInstance getHistoricCaseInstance()
-
setHistoricCaseInstance
public void setHistoricCaseInstance(org.flowable.cmmn.api.history.HistoricCaseInstance historicCaseInstance)
-
isHistoric
public boolean isHistoric()
-
setHistoric
public void setHistoric(boolean historic)
-
-