Uses of Interface
org.flowable.variable.api.runtime.VariableInstanceQuery
Packages that use VariableInstanceQuery
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 VariableInstanceQuery in org.flowable.engine
Methods in org.flowable.engine that return VariableInstanceQueryModifier and TypeMethodDescriptionRuntimeService.createVariableInstanceQuery()
Creates a new programmatic query to search forVariableInstance
s. -
Uses of VariableInstanceQuery in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return VariableInstanceQuery -
Uses of VariableInstanceQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type VariableInstanceQueryModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessVariableInfoWithQuery
(VariableInstanceQuery variableInstanceQuery, VariableInstanceQueryRequest request) -
Uses of VariableInstanceQuery in org.flowable.rest.service.api.runtime
Methods in org.flowable.rest.service.api.runtime with parameters of type VariableInstanceQueryModifier and TypeMethodDescriptionprotected void
VariableInstanceBaseResource.addVariables
(VariableInstanceQuery variableInstanceQuery, List<QueryVariable> variables) -
Uses of VariableInstanceQuery in org.flowable.variable.api.runtime
Methods in org.flowable.variable.api.runtime that return VariableInstanceQueryModifier and TypeMethodDescriptionVariableInstanceQuery.excludeLocalVariables()
Only select historic process variables which were not set local.VariableInstanceQuery.excludeTaskVariables()
Only select historic process variables which were not set task-local.VariableInstanceQuery.excludeVariableInitialization()
Don't initialize variable values.VariableInstanceQuery.executionId
(String executionId) Only select historic process variables with the given id.VariableInstanceQuery.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.VariableInstanceQuery.orderByProcessInstanceId()
VariableInstanceQuery.orderByVariableName()
VariableInstanceQuery.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.VariableInstanceQuery.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.VariableInstanceQuery.variableName
(String variableName) Only select historic process variables with the given variable name.VariableInstanceQuery.variableNameLike
(String variableNameLike) Only select historic process variables where the given variable name is like.VariableInstanceQuery.variableValueEquals
(String variableName, Object variableValue) only select historic process variables with the given name and valueVariableInstanceQuery.variableValueLike
(String variableName, String variableValue) only select historic process variables like the given name and valueVariableInstanceQuery.variableValueLikeIgnoreCase
(String variableName, String variableValue) only select historic process variables like the given name and value (case insensitive)VariableInstanceQuery.variableValueNotEquals
(String variableName, Object variableValue) only select historic process variables that don't have the given name and value -
Uses of VariableInstanceQuery in org.flowable.variable.service.impl
Classes in org.flowable.variable.service.impl that implement VariableInstanceQueryMethods in org.flowable.variable.service.impl that return VariableInstanceQueryModifier and TypeMethodDescriptionVariableInstanceQueryImpl.activityInstanceId
(String activityInstanceId) VariableInstanceQueryImpl.excludeLocalVariables()
VariableInstanceQueryImpl.excludeTaskVariables()
VariableInstanceQueryImpl.excludeVariableInitialization()
VariableInstanceQueryImpl.orderByProcessInstanceId()
VariableInstanceQueryImpl.orderByVariableName()
VariableInstanceQueryImpl.subScopeId
(String subScopeId) VariableInstanceQueryImpl.variableName
(String variableName) VariableInstanceQueryImpl.variableNameLike
(String variableNameLike) VariableInstanceQueryImpl.variableValueEquals
(String variableName, Object variableValue) VariableInstanceQueryImpl.variableValueLike
(String variableName, String variableValue) VariableInstanceQueryImpl.variableValueLikeIgnoreCase
(String variableName, String variableValue) VariableInstanceQueryImpl.variableValueNotEquals
(String variableName, Object variableValue)