Class ProcessInstanceInfo
java.lang.Object
com.flowable.platform.service.process.ProcessInstanceInfo
public class ProcessInstanceInfo
extends java.lang.Object
-
Field Summary
Fields Modifier and Type Field Description protected boolean
historic
protected org.flowable.engine.history.HistoricProcessInstance
historicProcessInstance
protected org.flowable.engine.runtime.ProcessInstance
processInstance
-
Constructor Summary
Constructors Constructor Description ProcessInstanceInfo(org.flowable.engine.history.HistoricProcessInstance historicProcessInstance)
ProcessInstanceInfo(org.flowable.engine.runtime.ProcessInstance processInstance)
-
Method Summary
Modifier and Type Method Description java.lang.String
getDeploymentId()
org.flowable.engine.history.HistoricProcessInstance
getHistoricProcessInstance()
java.lang.String
getProcessDefinitionId()
org.flowable.engine.runtime.ProcessInstance
getProcessInstance()
java.lang.String
getTenantId()
boolean
isHistoric()
void
setHistoric(boolean historic)
void
setHistoricProcessInstance(org.flowable.engine.history.HistoricProcessInstance historicProcessInstance)
void
setProcessInstance(org.flowable.engine.runtime.ProcessInstance processInstance)
-
Field Details
-
processInstance
protected org.flowable.engine.runtime.ProcessInstance processInstance -
historicProcessInstance
protected org.flowable.engine.history.HistoricProcessInstance historicProcessInstance -
historic
protected boolean historic
-
-
Constructor Details
-
ProcessInstanceInfo
public ProcessInstanceInfo(org.flowable.engine.runtime.ProcessInstance processInstance) -
ProcessInstanceInfo
public ProcessInstanceInfo(org.flowable.engine.history.HistoricProcessInstance historicProcessInstance)
-
-
Method Details
-
getProcessDefinitionId
public java.lang.String getProcessDefinitionId() -
getDeploymentId
public java.lang.String getDeploymentId() -
getTenantId
public java.lang.String getTenantId() -
getProcessInstance
public org.flowable.engine.runtime.ProcessInstance getProcessInstance() -
setProcessInstance
public void setProcessInstance(org.flowable.engine.runtime.ProcessInstance processInstance) -
getHistoricProcessInstance
public org.flowable.engine.history.HistoricProcessInstance getHistoricProcessInstance() -
setHistoricProcessInstance
public void setHistoricProcessInstance(org.flowable.engine.history.HistoricProcessInstance historicProcessInstance) -
isHistoric
public boolean isHistoric() -
setHistoric
public void setHistoric(boolean historic)
-