Uses of Interface
org.activiti.engine.history.HistoricVariableInstanceQuery
-
Packages that use HistoricVariableInstanceQuery Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.history Classes related to theHistoryService.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users. -
-
Uses of HistoricVariableInstanceQuery in org.activiti.engine
Methods in org.activiti.engine that return HistoricVariableInstanceQuery Modifier and Type Method Description HistoricVariableInstanceQueryHistoryService. createHistoricVariableInstanceQuery()Creates a new programmatic query to search forHistoricVariableInstances. -
Uses of HistoricVariableInstanceQuery in org.activiti.engine.history
Methods in org.activiti.engine.history that return HistoricVariableInstanceQuery Modifier and Type Method Description HistoricVariableInstanceQueryHistoricVariableInstanceQuery. excludeTaskVariables()Only select historic process variables which were not set task-local.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. excludeVariableInitialization()Don't initialize variable values.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. executionId(java.lang.String executionId)Only select historic process variables with the given id.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. executionIds(java.util.Set<java.lang.String> executionIds)Only select historic process variables whose id is in the given set of ids.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. id(java.lang.String id)Only select a historic variable with the given id.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. orderByProcessInstanceId()HistoricVariableInstanceQueryHistoricVariableInstanceQuery. orderByVariableName()HistoricVariableInstanceQueryHistoricVariableInstanceQuery. processInstanceId(java.lang.String processInstanceId)Only select historic process variables with the given process instance.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. taskId(java.lang.String taskId)Only select historic process variables with the given task.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. taskIds(java.util.Set<java.lang.String> taskIds)Only select historic process variables whose id is in the given set of ids.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableName(java.lang.String variableName)Only select historic process variables with the given variable name.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableNameLike(java.lang.String variableNameLike)Only select historic process variables where the given variable name is like.HistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableValueEquals(java.lang.String variableName, java.lang.Object variableValue)only select historic process variables with the given name and valueHistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableValueLike(java.lang.String variableName, java.lang.String variableValue)only select historic process variables like the given name and valueHistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableValueLikeIgnoreCase(java.lang.String variableName, java.lang.String variableValue)only select historic process variables like the given name and value (case insensitive)HistoricVariableInstanceQueryHistoricVariableInstanceQuery. variableValueNotEquals(java.lang.String variableName, java.lang.Object variableValue)only select historic process variables that don't have the given name and value -
Uses of HistoricVariableInstanceQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement HistoricVariableInstanceQuery Modifier and Type Class Description classHistoricVariableInstanceQueryImplMethods in org.activiti.engine.impl that return HistoricVariableInstanceQuery Modifier and Type Method Description HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. activityInstanceId(java.lang.String activityInstanceId)HistoricVariableInstanceQueryHistoryServiceImpl. createHistoricVariableInstanceQuery()HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. excludeTaskVariables()HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. excludeVariableInitialization()HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. id(java.lang.String id)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. orderByProcessInstanceId()HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. orderByVariableName()HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. taskId(java.lang.String taskId)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableName(java.lang.String variableName)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableNameLike(java.lang.String variableNameLike)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableValueEquals(java.lang.String variableName, java.lang.Object variableValue)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableValueLike(java.lang.String variableName, java.lang.String variableValue)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableValueLikeIgnoreCase(java.lang.String variableName, java.lang.String variableValue)HistoricVariableInstanceQueryHistoricVariableInstanceQueryImpl. variableValueNotEquals(java.lang.String variableName, java.lang.Object variableValue)
-