Class OptimizeHistoricVariableUpdateQueryCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.optimize.OptimizeHistoricVariableUpdateQueryCmd
-
- All Implemented Interfaces:
Command<List<HistoricVariableUpdate>>
public class OptimizeHistoricVariableUpdateQueryCmd extends Object implements Command<List<HistoricVariableUpdate>>
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
excludeObjectValues
protected int
maxResults
protected Date
occurredAfter
protected Date
occurredAt
-
Constructor Summary
Constructors Constructor Description OptimizeHistoricVariableUpdateQueryCmd(Date occurredAfter, Date occurredAt, boolean excludeObjectValues, int maxResults)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<HistoricVariableUpdate>
execute(CommandContext commandContext)
protected List<String>
getByteArrayIds(List<HistoricVariableUpdate> variableUpdates)
protected boolean
isHistoricDetailVariableInstanceUpdateEntity(HistoricVariableUpdate variableUpdate)
protected void
resolveTypedValues(List<HistoricVariableUpdate> variableUpdates)
protected boolean
shouldFetchValue(HistoricDetailVariableInstanceUpdateEntity entity)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.engine.impl.interceptor.Command
isRetryable
-
-
-
-
Method Detail
-
execute
public List<HistoricVariableUpdate> execute(CommandContext commandContext)
- Specified by:
execute
in interfaceCommand<List<HistoricVariableUpdate>>
-
shouldFetchValue
protected boolean shouldFetchValue(HistoricDetailVariableInstanceUpdateEntity entity)
-
isHistoricDetailVariableInstanceUpdateEntity
protected boolean isHistoricDetailVariableInstanceUpdateEntity(HistoricVariableUpdate variableUpdate)
-
getByteArrayIds
protected List<String> getByteArrayIds(List<HistoricVariableUpdate> variableUpdates)
-
resolveTypedValues
protected void resolveTypedValues(List<HistoricVariableUpdate> variableUpdates)
-
-