Class OptimizeHistoricVariableUpdateQueryCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.optimize.OptimizeHistoricVariableUpdateQueryCmd
-
- All Implemented Interfaces:
Command<java.util.List<HistoricVariableUpdate>>
public class OptimizeHistoricVariableUpdateQueryCmd extends java.lang.Object implements Command<java.util.List<HistoricVariableUpdate>>
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
excludeObjectValues
protected int
maxResults
protected java.util.Date
occurredAfter
protected java.util.Date
occurredAt
-
Constructor Summary
Constructors Constructor Description OptimizeHistoricVariableUpdateQueryCmd(java.util.Date occurredAfter, java.util.Date occurredAt, boolean excludeObjectValues, int maxResults)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<HistoricVariableUpdate>
execute(CommandContext commandContext)
protected java.util.List<java.lang.String>
getByteArrayIds(java.util.List<HistoricVariableUpdate> variableUpdates)
protected boolean
isHistoricDetailVariableInstanceUpdateEntity(HistoricVariableUpdate variableUpdate)
protected void
resolveTypedValues(java.util.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 java.util.List<HistoricVariableUpdate> execute(CommandContext commandContext)
- Specified by:
execute
in interfaceCommand<java.util.List<HistoricVariableUpdate>>
-
shouldFetchValue
protected boolean shouldFetchValue(HistoricDetailVariableInstanceUpdateEntity entity)
-
isHistoricDetailVariableInstanceUpdateEntity
protected boolean isHistoricDetailVariableInstanceUpdateEntity(HistoricVariableUpdate variableUpdate)
-
getByteArrayIds
protected java.util.List<java.lang.String> getByteArrayIds(java.util.List<HistoricVariableUpdate> variableUpdates)
-
resolveTypedValues
protected void resolveTypedValues(java.util.List<HistoricVariableUpdate> variableUpdates)
-
-