Package org.camunda.bpm.engine.history
Interface HistoricVariableUpdate
- All Superinterfaces:
- HistoricDetail
- All Known Implementing Classes:
- HistoricDetailVariableInstanceUpdateEntity
Update of a process variable.  This is only available if history
 level is configured to FULL.
- Author:
- Tom Baeyens
- 
Method SummaryModifier and TypeMethodDescriptionIf the variable value could not be loaded, this returns the error message.intReturns the type name of the variablegetValue()Returns the id of the corresponding variable instance.Deprecated.since 7.2.Methods inherited from interface org.camunda.bpm.engine.history.HistoricDetailgetActivityInstanceId, getCaseDefinitionId, getCaseDefinitionKey, getCaseExecutionId, getCaseInstanceId, getExecutionId, getId, getProcessDefinitionId, getProcessDefinitionKey, getProcessInstanceId, getRemovalTime, getRootProcessInstanceId, getTaskId, getTenantId, getTime, getUserOperationId
- 
Method Details- 
getVariableNameString getVariableName()
- 
getVariableInstanceIdString getVariableInstanceId()Returns the id of the corresponding variable instance.
- 
getTypeNameString getTypeName()Returns the type name of the variable- Returns:
- the type name of the variable
 
- 
getVariableTypeNameDeprecated.since 7.2. UsegetTypeName()- Returns:
- the name of the variable type.
 
- 
getValueObject getValue()
- 
getTypedValueTypedValue getTypedValue()- Returns:
- the TypedValuefor this variable update
 
- 
getRevisionint getRevision()
- 
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.
 
- 
isInitialBoolean isInitial()- Returns:
- true if the detail historic variable update is created during the process instance start
 
 
-