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)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 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