Class HistoricProcessInstanceEventEntity
- java.lang.Object
-
- org.camunda.bpm.engine.impl.history.event.HistoryEvent
-
- org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
-
- org.camunda.bpm.engine.impl.history.event.HistoricProcessInstanceEventEntity
-
- All Implemented Interfaces:
Serializable,DbEntity,HistoricEntity
- Direct Known Subclasses:
HistoricProcessInstanceEntity
public class HistoricProcessInstanceEventEntity extends HistoricScopeInstanceEvent
HistoryEventsignifying a top-level event in a process instance.- Author:
- Daniel Meyer, Marcel Wieczorek
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringbusinessKeythe business key of the process instanceprotected StringdeleteReasonthe reason why this process instance was cancelled (deleted)protected StringendActivityIdid of the activity which ended the process instanceprotected StringstartActivityIdid of the activity which started the process instanceprotected StringstartUserIdthe id of the user that started the process instanceprotected Stringstateprotected StringsuperCaseInstanceIdthe id of the super case instanceprotected StringsuperProcessInstanceIdthe id of the super process instanceprotected StringtenantIdid of the tenant which belongs to the process instance-
Fields inherited from class org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
durationInMillis, endTime, startTime
-
Fields inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
ACTIVITY_EVENT_TYPE_END, ACTIVITY_EVENT_TYPE_START, ACTIVITY_EVENT_TYPE_UPDATE, caseDefinitionId, caseDefinitionKey, caseDefinitionName, caseExecutionId, caseInstanceId, eventType, executionId, FORM_PROPERTY_UPDATE, id, IDENTITY_LINK_ADD, IDENTITY_LINK_DELETE, INCIDENT_CREATE, INCIDENT_DELETE, INCIDENT_RESOLVE, processDefinitionId, processDefinitionKey, processDefinitionName, processDefinitionVersion, processInstanceId, removalTime, rootProcessInstanceId, sequenceCounter, TASK_EVENT_TYPE_COMPLETE, TASK_EVENT_TYPE_CREATE, TASK_EVENT_TYPE_DELETE, TASK_EVENT_TYPE_UPDATE, VARIABLE_EVENT_TYPE_CREATE, VARIABLE_EVENT_TYPE_DELETE, VARIABLE_EVENT_TYPE_UPDATE
-
-
Constructor Summary
Constructors Constructor Description HistoricProcessInstanceEventEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBusinessKey()StringgetDeleteReason()StringgetEndActivityId()StringgetStartActivityId()StringgetStartUserId()StringgetState()StringgetSuperCaseInstanceId()StringgetSuperProcessInstanceId()StringgetTenantId()voidsetBusinessKey(String businessKey)voidsetDeleteReason(String deleteReason)voidsetEndActivityId(String endActivityId)voidsetStartActivityId(String startActivityId)voidsetStartUserId(String startUserId)voidsetState(String state)voidsetSuperCaseInstanceId(String superCaseInstanceId)voidsetSuperProcessInstanceId(String superProcessInstanceId)voidsetTenantId(String tenantId)StringtoString()-
Methods inherited from class org.camunda.bpm.engine.impl.history.event.HistoricScopeInstanceEvent
getDurationInMillis, getDurationRaw, getEndTime, getStartTime, setDurationInMillis, setEndTime, setStartTime
-
Methods inherited from class org.camunda.bpm.engine.impl.history.event.HistoryEvent
getCaseDefinitionId, getCaseDefinitionKey, getCaseDefinitionName, getCaseExecutionId, getCaseInstanceId, getEventType, getExecutionId, getId, getPersistentState, getProcessDefinitionId, getProcessDefinitionKey, getProcessDefinitionName, getProcessDefinitionVersion, getProcessInstanceId, getRemovalTime, getRootProcessInstanceId, getSequenceCounter, isEventOfType, setCaseDefinitionId, setCaseDefinitionKey, setCaseDefinitionName, setCaseExecutionId, setCaseInstanceId, setEventType, setExecutionId, setId, setProcessDefinitionId, setProcessDefinitionKey, setProcessDefinitionName, setProcessDefinitionVersion, setProcessInstanceId, setRemovalTime, setRootProcessInstanceId, setSequenceCounter
-
-
-
-
Field Detail
-
businessKey
protected String businessKey
the business key of the process instance
-
startUserId
protected String startUserId
the id of the user that started the process instance
-
superProcessInstanceId
protected String superProcessInstanceId
the id of the super process instance
-
superCaseInstanceId
protected String superCaseInstanceId
the id of the super case instance
-
deleteReason
protected String deleteReason
the reason why this process instance was cancelled (deleted)
-
endActivityId
protected String endActivityId
id of the activity which ended the process instance
-
startActivityId
protected String startActivityId
id of the activity which started the process instance
-
tenantId
protected String tenantId
id of the tenant which belongs to the process instance
-
state
protected String state
-
-
Method Detail
-
getEndActivityId
public String getEndActivityId()
-
setEndActivityId
public void setEndActivityId(String endActivityId)
-
getStartActivityId
public String getStartActivityId()
-
setStartActivityId
public void setStartActivityId(String startActivityId)
-
getBusinessKey
public String getBusinessKey()
-
setBusinessKey
public void setBusinessKey(String businessKey)
-
getStartUserId
public String getStartUserId()
-
setStartUserId
public void setStartUserId(String startUserId)
-
getSuperProcessInstanceId
public String getSuperProcessInstanceId()
-
setSuperProcessInstanceId
public void setSuperProcessInstanceId(String superProcessInstanceId)
-
getSuperCaseInstanceId
public String getSuperCaseInstanceId()
-
setSuperCaseInstanceId
public void setSuperCaseInstanceId(String superCaseInstanceId)
-
getDeleteReason
public String getDeleteReason()
-
setDeleteReason
public void setDeleteReason(String deleteReason)
-
getTenantId
public String getTenantId()
-
setTenantId
public void setTenantId(String tenantId)
-
getState
public String getState()
-
setState
public void setState(String state)
-
toString
public String toString()
- Overrides:
toStringin classHistoryEvent
-
-