Uses of Interface
org.flowable.variable.api.history.HistoricVariableInstanceQuery
Packages that use HistoricVariableInstanceQuery
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
: Manages Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.TaskService
: Exposes operations to manage human (standalone) tasks, such as claiming, completing and assigning tasks.IdentityService
: Used for managing users, groups and the relations between them.ManagementService
: Exposes engine administration and maintenance operations,
which have no relation to the runtime exection of business processes.HistoryService
: Exposes information about ongoing and past process instances.FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of HistoricVariableInstanceQuery in org.flowable.engine
Methods in org.flowable.engine that return HistoricVariableInstanceQueryModifier and TypeMethodDescriptionHistoryService.createHistoricVariableInstanceQuery()
Creates a new programmatic query to search forHistoricVariableInstance
s. -
Uses of HistoricVariableInstanceQuery in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return HistoricVariableInstanceQuery -
Uses of HistoricVariableInstanceQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type HistoricVariableInstanceQueryModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessHistoryVariableInfoWithQuery
(HistoricVariableInstanceQuery historicVariableInstanceQuery, HistoricVariableInstanceQueryRequest request) -
Uses of HistoricVariableInstanceQuery in org.flowable.rest.service.api.history
Methods in org.flowable.rest.service.api.history with parameters of type HistoricVariableInstanceQueryModifier and TypeMethodDescriptionprotected void
HistoricVariableInstanceBaseResource.addVariables
(HistoricVariableInstanceQuery variableInstanceQuery, List<QueryVariable> variables) -
Uses of HistoricVariableInstanceQuery in org.flowable.variable.api.history
Methods in org.flowable.variable.api.history that return HistoricVariableInstanceQueryModifier and TypeMethodDescriptionHistoricVariableInstanceQuery.excludeLocalVariables()
Only select historic process variables which were not set local.HistoricVariableInstanceQuery.excludeTaskVariables()
Only select historic process variables which were not set task-local.HistoricVariableInstanceQuery.excludeVariableInitialization()
Don't initialize variable values.HistoricVariableInstanceQuery.executionId
(String executionId) Only select historic process variables with the given id.HistoricVariableInstanceQuery.executionIds
(Set<String> executionIds) Only select historic process variables whose id is in the given set of ids.Only select a historic variable with the given id.HistoricVariableInstanceQuery.orderByProcessInstanceId()
HistoricVariableInstanceQuery.orderByVariableName()
HistoricVariableInstanceQuery.processInstanceId
(String processInstanceId) Only select historic process variables with the given process instance.Only select historic variables with the given scope id.Only select historic variables with the give scope type.HistoricVariableInstanceQuery.subScopeId
(String subScopeId) Only select historic variables with the given sub scope id.Only select historic process variables with the given task.Only select historic process variables whose id is in the given set of ids.HistoricVariableInstanceQuery.variableName
(String variableName) Only select historic process variables with the given variable name.HistoricVariableInstanceQuery.variableNameLike
(String variableNameLike) Only select historic process variables where the given variable name is like.HistoricVariableInstanceQuery.variableValueEquals
(String variableName, Object variableValue) only select historic process variables with the given name and valueHistoricVariableInstanceQuery.variableValueLike
(String variableName, String variableValue) only select historic process variables like the given name and valueHistoricVariableInstanceQuery.variableValueLikeIgnoreCase
(String variableName, String variableValue) only select historic process variables like the given name and value (case insensitive)HistoricVariableInstanceQuery.variableValueNotEquals
(String variableName, Object variableValue) only select historic process variables that don't have the given name and value -
Uses of HistoricVariableInstanceQuery in org.flowable.variable.service.impl
Classes in org.flowable.variable.service.impl that implement HistoricVariableInstanceQueryMethods in org.flowable.variable.service.impl that return HistoricVariableInstanceQueryModifier and TypeMethodDescriptionHistoricVariableInstanceQueryImpl.activityInstanceId
(String activityInstanceId) HistoricVariableInstanceQueryImpl.excludeLocalVariables()
HistoricVariableInstanceQueryImpl.excludeTaskVariables()
HistoricVariableInstanceQueryImpl.excludeVariableInitialization()
HistoricVariableInstanceQueryImpl.orderByProcessInstanceId()
HistoricVariableInstanceQueryImpl.orderByVariableName()
HistoricVariableInstanceQueryImpl.subScopeId
(String subScopeId) HistoricVariableInstanceQueryImpl.variableName
(String variableName) HistoricVariableInstanceQueryImpl.variableNameLike
(String variableNameLike) HistoricVariableInstanceQueryImpl.variableValueEquals
(String variableName, Object variableValue) HistoricVariableInstanceQueryImpl.variableValueLike
(String variableName, String variableValue) HistoricVariableInstanceQueryImpl.variableValueLikeIgnoreCase
(String variableName, String variableValue) HistoricVariableInstanceQueryImpl.variableValueNotEquals
(String variableName, Object variableValue)