Package org.camunda.bpm.engine.history
Interface HistoricDetail
-
- All Known Subinterfaces:
HistoricFormField,HistoricFormProperty,HistoricVariableUpdate
- All Known Implementing Classes:
HistoricDetailVariableInstanceUpdateEntity,HistoricFormPropertyEntity
public interface HistoricDetailBase class for all kinds of information that is related to either aHistoricProcessInstanceor aHistoricActivityInstance.- Author:
- Tom Baeyens
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetActivityInstanceId()The activity reference in case this detail is related to an activity instance.java.lang.StringgetCaseDefinitionId()The case definition reference.java.lang.StringgetCaseDefinitionKey()The case definition key reference.java.lang.StringgetCaseExecutionId()The case execution reference.java.lang.StringgetCaseInstanceId()The case instance reference.java.lang.StringgetExecutionId()The identifier for the path of execution.java.lang.StringgetId()The unique DB id for this historic detailjava.lang.StringgetProcessDefinitionId()The process definition reference.java.lang.StringgetProcessDefinitionKey()The process definition key reference.java.lang.StringgetProcessInstanceId()The process instance reference.java.util.DategetRemovalTime()The time the historic detail will be removed.java.lang.StringgetRootProcessInstanceId()The root process instance referencejava.lang.StringgetTaskId()The identifier for the task.java.lang.StringgetTenantId()The id of the tenant this historic detail belongs to.java.util.DategetTime()The time when this detail occurredjava.lang.StringgetUserOperationId()The id of operation.
-
-
-
Method Detail
-
getId
java.lang.String getId()
The unique DB id for this historic detail
-
getProcessDefinitionKey
java.lang.String getProcessDefinitionKey()
The process definition key reference.
-
getProcessDefinitionId
java.lang.String getProcessDefinitionId()
The process definition reference.
-
getRootProcessInstanceId
java.lang.String getRootProcessInstanceId()
The root process instance reference
-
getProcessInstanceId
java.lang.String getProcessInstanceId()
The process instance reference.
-
getActivityInstanceId
java.lang.String getActivityInstanceId()
The activity reference in case this detail is related to an activity instance.
-
getExecutionId
java.lang.String getExecutionId()
The identifier for the path of execution.
-
getCaseDefinitionKey
java.lang.String getCaseDefinitionKey()
The case definition key reference.
-
getCaseDefinitionId
java.lang.String getCaseDefinitionId()
The case definition reference.
-
getCaseInstanceId
java.lang.String getCaseInstanceId()
The case instance reference.
-
getCaseExecutionId
java.lang.String getCaseExecutionId()
The case execution reference.
-
getTaskId
java.lang.String getTaskId()
The identifier for the task.
-
getTime
java.util.Date getTime()
The time when this detail occurred
-
getTenantId
java.lang.String getTenantId()
The id of the tenant this historic detail belongs to. Can benullif the historic detail belongs to no single tenant.
-
getUserOperationId
java.lang.String getUserOperationId()
The id of operation. Helps to link records in different historic tables. References operationId of user operation log entry.
-
getRemovalTime
java.util.Date getRemovalTime()
The time the historic detail will be removed.
-
-