Package org.camunda.bpm.engine.impl
Class NativeHistoricVariableInstanceQueryImpl
- java.lang.Object
-
- org.camunda.bpm.engine.impl.AbstractNativeQuery<NativeHistoricVariableInstanceQuery,HistoricVariableInstance>
-
- org.camunda.bpm.engine.impl.NativeHistoricVariableInstanceQueryImpl
-
- All Implemented Interfaces:
Serializable
,NativeHistoricVariableInstanceQuery
,Command<Object>
,NativeQuery<NativeHistoricVariableInstanceQuery,HistoricVariableInstance>
public class NativeHistoricVariableInstanceQueryImpl extends AbstractNativeQuery<NativeHistoricVariableInstanceQuery,HistoricVariableInstance> implements NativeHistoricVariableInstanceQuery
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected boolean
isCustomObjectDeserializationEnabled
-
Fields inherited from class org.camunda.bpm.engine.impl.AbstractNativeQuery
commandContext, commandExecutor, firstResult, maxResults, resultType
-
-
Constructor Summary
Constructors Constructor Description NativeHistoricVariableInstanceQueryImpl(CommandContext commandContext)
NativeHistoricVariableInstanceQueryImpl(CommandExecutor commandExecutor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NativeHistoricVariableInstanceQuery
disableCustomObjectDeserialization()
Disable deserialization of variable values that are custom objects.long
executeCount(CommandContext commandContext, Map<String,Object> parameterMap)
List<HistoricVariableInstance>
executeList(CommandContext commandContext, Map<String,Object> parameterMap, int firstResult, int maxResults)
Executes the actual query to retrieve the list of results.-
Methods inherited from class org.camunda.bpm.engine.impl.AbstractNativeQuery
count, execute, executeSingleResult, getParameters, list, listPage, parameter, setCommandExecutor, singleResult, sql
-
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
-
Methods inherited from interface org.camunda.bpm.engine.query.NativeQuery
count, list, listPage, parameter, singleResult, sql
-
-
-
-
Constructor Detail
-
NativeHistoricVariableInstanceQueryImpl
public NativeHistoricVariableInstanceQueryImpl(CommandContext commandContext)
-
NativeHistoricVariableInstanceQueryImpl
public NativeHistoricVariableInstanceQueryImpl(CommandExecutor commandExecutor)
-
-
Method Detail
-
disableCustomObjectDeserialization
public NativeHistoricVariableInstanceQuery disableCustomObjectDeserialization()
Description copied from interface:NativeHistoricVariableInstanceQuery
Disable deserialization of variable values that are custom objects. By default, the query will attempt to deserialize the value of these variables. By calling this method you can prevent such attempts in environments where their classes are not available. Independent of this setting, variable serialized values are accessible.- Specified by:
disableCustomObjectDeserialization
in interfaceNativeHistoricVariableInstanceQuery
-
executeList
public List<HistoricVariableInstance> executeList(CommandContext commandContext, Map<String,Object> parameterMap, int firstResult, int maxResults)
Description copied from class:AbstractNativeQuery
Executes the actual query to retrieve the list of results.- Specified by:
executeList
in classAbstractNativeQuery<NativeHistoricVariableInstanceQuery,HistoricVariableInstance>
-
executeCount
public long executeCount(CommandContext commandContext, Map<String,Object> parameterMap)
- Specified by:
executeCount
in classAbstractNativeQuery<NativeHistoricVariableInstanceQuery,HistoricVariableInstance>
-
-