Package org.camunda.bpm.engine.history
Interface HistoricVariableInstance
- 
- All Known Implementing Classes:
- HistoricVariableInstanceEntity
 
 public interface HistoricVariableInstanceA single process variable containing the last value when its process instance has finished. It is only available when HISTORY_LEVEL is set >= AUDIT- Author:
- Christian Lipphardt (camunda), ruecker
 
- 
- 
Field SummaryFields Modifier and Type Field Description static StringSTATE_CREATEDstatic StringSTATE_DELETED
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetActivityInstanceId()Returns the corresponding activity instance id.StringgetActivtyInstanceId()Deprecated.StringgetCaseDefinitionId()The case definition reference.StringgetCaseDefinitionKey()The case definition key reference.StringgetCaseExecutionId()Return the corresponding case execution id.StringgetCaseInstanceId()The case instance reference.DategetCreateTime()The time when the variable was created.StringgetErrorMessage()If the variable value could not be loaded, this returns the error message.StringgetExecutionId()Return the corresponding execution id.StringgetId()StringgetName()Returns the name of this variable instance.StringgetProcessDefinitionId()The process definition reference.StringgetProcessDefinitionKey()The process definition key reference.StringgetProcessInstanceId()The process instance reference.DategetRemovalTime()The time when the historic variable instance will be removed.StringgetRootProcessInstanceId()The root process instance reference.StringgetState()The current state of the variable.StringgetTaskId()Return the corresponding task id.StringgetTenantId()The id of the tenant this variable belongs to.TypedValuegetTypedValue()Returns theTypedValueof this variable instance.StringgetTypeName()Returns the name of the type of this variable instanceObjectgetValue()Returns the value of this variable instance.StringgetVariableName()Deprecated.StringgetVariableTypeName()Deprecated.
 
- 
- 
- 
Field Detail- 
STATE_CREATEDstatic final String STATE_CREATED - See Also:
- Constant Field Values
 
 - 
STATE_DELETEDstatic final String STATE_DELETED - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getIdString getId() - Returns:
- the Id of this variable instance
 
 - 
getNameString getName() Returns the name of this variable instance.
 - 
getTypeNameString getTypeName() Returns the name of the type of this variable instance- Returns:
- the type name of the variable
 
 - 
getValueObject getValue() Returns the value of this variable instance.
 - 
getTypedValueTypedValue getTypedValue() Returns theTypedValueof this variable instance.
 - 
getVariableName@Deprecated String getVariableName() Deprecated.Returns the name of this variable instance.Deprecated since 7.2: use getName()instead.
 - 
getVariableTypeName@Deprecated String getVariableTypeName() Deprecated.Returns the name of the type of this variable instance Deprecated since 7.2: use getTypeName()instead.
 - 
getProcessDefinitionKeyString getProcessDefinitionKey() The process definition key reference.
 - 
getProcessDefinitionIdString getProcessDefinitionId() The process definition reference.
 - 
getRootProcessInstanceIdString getRootProcessInstanceId() The root process instance reference.
 - 
getProcessInstanceIdString getProcessInstanceId() The process instance reference.
 - 
getExecutionIdString getExecutionId() Return the corresponding execution id.
 - 
getActivtyInstanceId@Deprecated String getActivtyInstanceId() Deprecated.Returns the corresponding activity instance id.
 - 
getActivityInstanceIdString getActivityInstanceId() Returns the corresponding activity instance id.
 - 
getCaseDefinitionKeyString getCaseDefinitionKey() The case definition key reference.
 - 
getCaseDefinitionIdString getCaseDefinitionId() The case definition reference.
 - 
getCaseInstanceIdString getCaseInstanceId() The case instance reference.
 - 
getCaseExecutionIdString getCaseExecutionId() Return the corresponding case execution id.
 - 
getTaskIdString getTaskId() Return the corresponding task id.
 - 
getErrorMessageString getErrorMessage() If the variable value could not be loaded, this returns the error message.- Returns:
- an error message indicating why the variable value could not be loaded.
 
 - 
getTenantIdString getTenantId() The id of the tenant this variable belongs to. Can benullif the variable belongs to no single tenant.
 - 
getStateString getState() The current state of the variable. Can be 'CREATED' or 'DELETED'
 - 
getCreateTimeDate getCreateTime() The time when the variable was created.
 - 
getRemovalTimeDate getRemovalTime() The time when the historic variable instance will be removed.
 
- 
 
-