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:
java.io.Serializable
,DbEntity
,HistoricEntity
- Direct Known Subclasses:
HistoricProcessInstanceEntity
public class HistoricProcessInstanceEventEntity extends HistoricScopeInstanceEvent
HistoryEvent
signifying 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 java.lang.String
businessKey
the business key of the process instanceprotected java.lang.String
deleteReason
the reason why this process instance was cancelled (deleted)protected java.lang.String
endActivityId
id of the activity which ended the process instanceprotected java.lang.String
startActivityId
id of the activity which started the process instanceprotected java.lang.String
startUserId
the id of the user that started the process instanceprotected java.lang.String
state
protected java.lang.String
superCaseInstanceId
the id of the super case instanceprotected java.lang.String
superProcessInstanceId
the id of the super process instanceprotected java.lang.String
tenantId
id 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 java.lang.String
getBusinessKey()
java.lang.String
getDeleteReason()
java.lang.String
getEndActivityId()
java.lang.String
getStartActivityId()
java.lang.String
getStartUserId()
java.lang.String
getState()
java.lang.String
getSuperCaseInstanceId()
java.lang.String
getSuperProcessInstanceId()
java.lang.String
getTenantId()
void
setBusinessKey(java.lang.String businessKey)
void
setDeleteReason(java.lang.String deleteReason)
void
setEndActivityId(java.lang.String endActivityId)
void
setStartActivityId(java.lang.String startActivityId)
void
setStartUserId(java.lang.String startUserId)
void
setState(java.lang.String state)
void
setSuperCaseInstanceId(java.lang.String superCaseInstanceId)
void
setSuperProcessInstanceId(java.lang.String superProcessInstanceId)
void
setTenantId(java.lang.String tenantId)
java.lang.String
toString()
-
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 java.lang.String businessKey
the business key of the process instance
-
startUserId
protected java.lang.String startUserId
the id of the user that started the process instance
-
superProcessInstanceId
protected java.lang.String superProcessInstanceId
the id of the super process instance
-
superCaseInstanceId
protected java.lang.String superCaseInstanceId
the id of the super case instance
-
deleteReason
protected java.lang.String deleteReason
the reason why this process instance was cancelled (deleted)
-
endActivityId
protected java.lang.String endActivityId
id of the activity which ended the process instance
-
startActivityId
protected java.lang.String startActivityId
id of the activity which started the process instance
-
tenantId
protected java.lang.String tenantId
id of the tenant which belongs to the process instance
-
state
protected java.lang.String state
-
-
Method Detail
-
getEndActivityId
public java.lang.String getEndActivityId()
-
setEndActivityId
public void setEndActivityId(java.lang.String endActivityId)
-
getStartActivityId
public java.lang.String getStartActivityId()
-
setStartActivityId
public void setStartActivityId(java.lang.String startActivityId)
-
getBusinessKey
public java.lang.String getBusinessKey()
-
setBusinessKey
public void setBusinessKey(java.lang.String businessKey)
-
getStartUserId
public java.lang.String getStartUserId()
-
setStartUserId
public void setStartUserId(java.lang.String startUserId)
-
getSuperProcessInstanceId
public java.lang.String getSuperProcessInstanceId()
-
setSuperProcessInstanceId
public void setSuperProcessInstanceId(java.lang.String superProcessInstanceId)
-
getSuperCaseInstanceId
public java.lang.String getSuperCaseInstanceId()
-
setSuperCaseInstanceId
public void setSuperCaseInstanceId(java.lang.String superCaseInstanceId)
-
getDeleteReason
public java.lang.String getDeleteReason()
-
setDeleteReason
public void setDeleteReason(java.lang.String deleteReason)
-
getTenantId
public java.lang.String getTenantId()
-
setTenantId
public void setTenantId(java.lang.String tenantId)
-
getState
public java.lang.String getState()
-
setState
public void setState(java.lang.String state)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classHistoryEvent
-
-