Package org.activiti.engine.history
Interface HistoricVariableInstanceQuery
-
- All Superinterfaces:
Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
- All Known Implementing Classes:
HistoricVariableInstanceQueryImpl
@Internal public interface HistoricVariableInstanceQuery extends Query<HistoricVariableInstanceQuery,HistoricVariableInstance>
Programmatic querying forHistoricVariableInstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricVariableInstanceQueryexcludeTaskVariables()Only select historic process variables which were not set task-local.HistoricVariableInstanceQueryexcludeVariableInitialization()Don't initialize variable values.HistoricVariableInstanceQueryexecutionId(java.lang.String executionId)Only select historic process variables with the given id.HistoricVariableInstanceQueryexecutionIds(java.util.Set<java.lang.String> executionIds)Only select historic process variables whose id is in the given set of ids.HistoricVariableInstanceQueryid(java.lang.String id)Only select a historic variable with the given id.HistoricVariableInstanceQueryorderByProcessInstanceId()HistoricVariableInstanceQueryorderByVariableName()HistoricVariableInstanceQueryprocessInstanceId(java.lang.String processInstanceId)Only select historic process variables with the given process instance.HistoricVariableInstanceQuerytaskId(java.lang.String taskId)Only select historic process variables with the given task.HistoricVariableInstanceQuerytaskIds(java.util.Set<java.lang.String> taskIds)Only select historic process variables whose id is in the given set of ids.HistoricVariableInstanceQueryvariableName(java.lang.String variableName)Only select historic process variables with the given variable name.HistoricVariableInstanceQueryvariableNameLike(java.lang.String variableNameLike)Only select historic process variables where the given variable name is like.HistoricVariableInstanceQueryvariableValueEquals(java.lang.String variableName, java.lang.Object variableValue)only select historic process variables with the given name and valueHistoricVariableInstanceQueryvariableValueLike(java.lang.String variableName, java.lang.String variableValue)only select historic process variables like the given name and valueHistoricVariableInstanceQueryvariableValueLikeIgnoreCase(java.lang.String variableName, java.lang.String variableValue)only select historic process variables like the given name and value (case insensitive)HistoricVariableInstanceQueryvariableValueNotEquals(java.lang.String variableName, java.lang.Object variableValue)only select historic process variables that don't have the given name and value
-
-
-
Method Detail
-
id
HistoricVariableInstanceQuery id(java.lang.String id)
Only select a historic variable with the given id.
-
processInstanceId
HistoricVariableInstanceQuery processInstanceId(java.lang.String processInstanceId)
Only select historic process variables with the given process instance.
-
executionId
HistoricVariableInstanceQuery executionId(java.lang.String executionId)
Only select historic process variables with the given id.
-
executionIds
HistoricVariableInstanceQuery executionIds(java.util.Set<java.lang.String> executionIds)
Only select historic process variables whose id is in the given set of ids.
-
taskId
HistoricVariableInstanceQuery taskId(java.lang.String taskId)
Only select historic process variables with the given task.
-
taskIds
HistoricVariableInstanceQuery taskIds(java.util.Set<java.lang.String> taskIds)
Only select historic process variables whose id is in the given set of ids.
-
variableName
HistoricVariableInstanceQuery variableName(java.lang.String variableName)
Only select historic process variables with the given variable name.
-
variableNameLike
HistoricVariableInstanceQuery variableNameLike(java.lang.String variableNameLike)
Only select historic process variables where the given variable name is like.
-
excludeTaskVariables
HistoricVariableInstanceQuery excludeTaskVariables()
Only select historic process variables which were not set task-local.
-
excludeVariableInitialization
HistoricVariableInstanceQuery excludeVariableInitialization()
Don't initialize variable values. This is foremost a way to deal with variable delete queries
-
variableValueEquals
HistoricVariableInstanceQuery variableValueEquals(java.lang.String variableName, java.lang.Object variableValue)
only select historic process variables with the given name and value
-
variableValueNotEquals
HistoricVariableInstanceQuery variableValueNotEquals(java.lang.String variableName, java.lang.Object variableValue)
only select historic process variables that don't have the given name and value
-
variableValueLike
HistoricVariableInstanceQuery variableValueLike(java.lang.String variableName, java.lang.String variableValue)
only select historic process variables like the given name and value
-
variableValueLikeIgnoreCase
HistoricVariableInstanceQuery variableValueLikeIgnoreCase(java.lang.String variableName, java.lang.String variableValue)
only select historic process variables like the given name and value (case insensitive)
-
orderByProcessInstanceId
HistoricVariableInstanceQuery orderByProcessInstanceId()
-
orderByVariableName
HistoricVariableInstanceQuery orderByVariableName()
-
-