Uses of Interface
org.camunda.bpm.engine.runtime.VariableInstanceQuery
-
Packages that use VariableInstanceQuery Package Description org.camunda.bpm.engine Public API of the Camunda Platform 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
IdentityService: Used for managingUsers,Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution 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.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.rest.sub.runtime.impl org.camunda.bpm.engine.runtime Classes related to theRuntimeService. -
-
Uses of VariableInstanceQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return VariableInstanceQuery Modifier and Type Method Description VariableInstanceQueryRuntimeService. createVariableInstanceQuery()Creates a newVariableInstanceQueryinstance, that can be used to query variable instances. -
Uses of VariableInstanceQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement VariableInstanceQuery Modifier and Type Class Description classVariableInstanceQueryImplMethods in org.camunda.bpm.engine.impl that return VariableInstanceQuery Modifier and Type Method Description VariableInstanceQueryVariableInstanceQueryImpl. activityInstanceIdIn(java.lang.String... activityInstanceIds)VariableInstanceQueryVariableInstanceQueryImpl. batchIdIn(java.lang.String... batchIds)VariableInstanceQueryVariableInstanceQueryImpl. caseExecutionIdIn(java.lang.String... caseExecutionIds)VariableInstanceQueryVariableInstanceQueryImpl. caseInstanceIdIn(java.lang.String... caseInstanceIds)VariableInstanceQueryRuntimeServiceImpl. createVariableInstanceQuery()VariableInstanceQueryVariableInstanceQueryImpl. disableBinaryFetching()VariableInstanceQueryVariableInstanceQueryImpl. disableCustomObjectDeserialization()VariableInstanceQueryVariableInstanceQueryImpl. executionIdIn(java.lang.String... executionIds)VariableInstanceQueryVariableInstanceQueryImpl. orderByActivityInstanceId()VariableInstanceQueryVariableInstanceQueryImpl. orderByTenantId()VariableInstanceQueryVariableInstanceQueryImpl. orderByVariableName()VariableInstanceQueryVariableInstanceQueryImpl. orderByVariableType()VariableInstanceQueryVariableInstanceQueryImpl. processInstanceIdIn(java.lang.String... processInstanceIds)VariableInstanceQueryVariableInstanceQueryImpl. taskIdIn(java.lang.String... taskIds)VariableInstanceQueryVariableInstanceQueryImpl. tenantIdIn(java.lang.String... tenantIds)VariableInstanceQueryVariableInstanceQueryImpl. variableId(java.lang.String id)VariableInstanceQueryVariableInstanceQueryImpl. variableName(java.lang.String variableName)VariableInstanceQueryVariableInstanceQueryImpl. variableNameIn(java.lang.String... variableNames)VariableInstanceQueryVariableInstanceQueryImpl. variableNameLike(java.lang.String variableNameLike)VariableInstanceQueryVariableInstanceQueryImpl. variableScopeIdIn(java.lang.String... variableScopeIds) -
Uses of VariableInstanceQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return VariableInstanceQuery Modifier and Type Method Description protected VariableInstanceQueryVariableInstanceQueryDto. createNewQuery(ProcessEngine engine)Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type VariableInstanceQuery Modifier and Type Method Description protected voidVariableInstanceQueryDto. applyFilters(VariableInstanceQuery query)protected voidVariableInstanceQueryDto. applySortBy(VariableInstanceQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine) -
Uses of VariableInstanceQuery in org.camunda.bpm.engine.rest.sub.runtime.impl
Methods in org.camunda.bpm.engine.rest.sub.runtime.impl that return VariableInstanceQuery Modifier and Type Method Description protected VariableInstanceQueryVariableInstanceResourceImpl. baseQuery()Methods in org.camunda.bpm.engine.rest.sub.runtime.impl that return types with arguments of type VariableInstanceQuery Modifier and Type Method Description protected Query<VariableInstanceQuery,VariableInstance>VariableInstanceResourceImpl. baseQueryForBinaryVariable()protected Query<VariableInstanceQuery,VariableInstance>VariableInstanceResourceImpl. baseQueryForVariable(boolean deserializeObjectValue) -
Uses of VariableInstanceQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return VariableInstanceQuery Modifier and Type Method Description VariableInstanceQueryVariableInstanceQuery. activityInstanceIdIn(java.lang.String... activityInstanceIds)Only select variable instances which have one of the activity instance ids.VariableInstanceQueryVariableInstanceQuery. batchIdIn(java.lang.String... batchIds)Only select variable instances which are related to one of the given batch ids.VariableInstanceQueryVariableInstanceQuery. caseExecutionIdIn(java.lang.String... caseExecutionIds)Only select variable instances which have one of the case execution ids.VariableInstanceQueryVariableInstanceQuery. caseInstanceIdIn(java.lang.String... caseInstanceIds)Only select variable instances which have one of the case instance ids.VariableInstanceQueryVariableInstanceQuery. disableBinaryFetching()Disable fetching of byte array and file values.VariableInstanceQueryVariableInstanceQuery. disableCustomObjectDeserialization()Disable deserialization of variable values that are custom objects.VariableInstanceQueryVariableInstanceQuery. executionIdIn(java.lang.String... executionIds)Only select variable instances which have one of the executions ids.VariableInstanceQueryVariableInstanceQuery. matchVariableNamesIgnoreCase()The query will match the names of variables in a case-insensitive way.
Note: This affects allvariableValueXXXfilters:variableValueEquals(String, Object)variableValueGreaterThan(String, Object)variableValueGreaterThanOrEqual(String, Object)variableValueLessThan(String, Object)variableValueLessThanOrEqual(String, Object)variableValueLike(String, String)variableValueNotEquals(String, Object)It does not affect:variableName(String)variableNameIn(String...)variableNameLike(String)VariableInstanceQueryVariableInstanceQuery. matchVariableValuesIgnoreCase()The query will match the values of variables in a case-insensitive way.
Note: This affects allvariableValueXXXfilters:variableValueEquals(String, Object)variableValueGreaterThan(String, Object)variableValueGreaterThanOrEqual(String, Object)variableValueLessThan(String, Object)variableValueLessThanOrEqual(String, Object)variableValueLike(String, String)variableValueNotEquals(String, Object)VariableInstanceQueryVariableInstanceQuery. orderByActivityInstanceId()Order by activity instance id (needs to be followed byQuery.asc()orQuery.desc()).VariableInstanceQueryVariableInstanceQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).VariableInstanceQueryVariableInstanceQuery. orderByVariableName()Order by variable name (needs to be followed byQuery.asc()orQuery.desc()).VariableInstanceQueryVariableInstanceQuery. orderByVariableType()Order by variable type (needs to be followed byQuery.asc()orQuery.desc()).VariableInstanceQueryVariableInstanceQuery. processInstanceIdIn(java.lang.String... processInstanceIds)Only select variable instances which have one of the process instance ids.VariableInstanceQueryVariableInstanceQuery. taskIdIn(java.lang.String... taskIds)Only select variable instances which have one of the task ids.VariableInstanceQueryVariableInstanceQuery. tenantIdIn(java.lang.String... tenantIds)Only select variable instances with one of the given tenant ids.VariableInstanceQueryVariableInstanceQuery. variableId(java.lang.String id)Only select the variable with the given IdVariableInstanceQueryVariableInstanceQuery. variableName(java.lang.String variableName)Only select variable instances which have the variable name.VariableInstanceQueryVariableInstanceQuery. variableNameIn(java.lang.String... variableNames)Only select variable instances which have one of the variables names.VariableInstanceQueryVariableInstanceQuery. variableNameLike(java.lang.String variableNameLike)Only select variable instances which have the name like the assigned variable name.VariableInstanceQueryVariableInstanceQuery. variableScopeIdIn(java.lang.String... variableScopeIds)Only select variables instances which have on of the variable scope ids.VariableInstanceQueryVariableInstanceQuery. variableValueEquals(java.lang.String name, java.lang.Object value)Only select variables instances which have the given name and value.VariableInstanceQueryVariableInstanceQuery. variableValueGreaterThan(java.lang.String name, java.lang.Object value)Only select variable instances which value is greater than the passed value.VariableInstanceQueryVariableInstanceQuery. variableValueGreaterThanOrEqual(java.lang.String name, java.lang.Object value)Only select variable instances which value is greater than or equal to the passed value.VariableInstanceQueryVariableInstanceQuery. variableValueLessThan(java.lang.String name, java.lang.Object value)Only select variable instances which value is less than the passed value.VariableInstanceQueryVariableInstanceQuery. variableValueLessThanOrEqual(java.lang.String name, java.lang.Object value)Only select variable instances which value is less than or equal to the passed value.VariableInstanceQueryVariableInstanceQuery. variableValueLike(java.lang.String name, java.lang.String value)Only select variable instances which value is like the given value.VariableInstanceQueryVariableInstanceQuery. variableValueNotEquals(java.lang.String name, java.lang.Object value)Only select variable instances which have the given name, but with a different value than the passed value.
-