Uses of Interface
org.camunda.bpm.engine.runtime.ExecutionQuery
-
Packages that use ExecutionQuery 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 aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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.runtime Classes related to theRuntimeService
.org.camunda.bpm.qa.upgrade -
-
Uses of ExecutionQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return ExecutionQuery Modifier and Type Method Description ExecutionQuery
RuntimeService. createExecutionQuery()
Creates a newExecutionQuery
instance, that can be used to query the executions and process instances. -
Uses of ExecutionQuery in org.camunda.bpm.engine.impl
Classes in org.camunda.bpm.engine.impl that implement ExecutionQuery Modifier and Type Class Description class
ExecutionQueryImpl
-
Uses of ExecutionQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return ExecutionQuery Modifier and Type Method Description protected ExecutionQuery
ExecutionQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type ExecutionQuery Modifier and Type Method Description protected void
ExecutionQueryDto. applyFilters(ExecutionQuery query)
protected void
ExecutionQueryDto. applySortBy(ExecutionQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-
Uses of ExecutionQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return ExecutionQuery Modifier and Type Method Description ExecutionQuery
ExecutionQuery. active()
Only selects executions which are active (i.e.ExecutionQuery
ExecutionQuery. activityId(String activityId)
Only select executions which contain an activity with the given id.ExecutionQuery
ExecutionQuery. executionId(String executionId)
Only select executions with the given id.ExecutionQuery
ExecutionQuery. incidentId(String incidentId)
Only selects executions with the given incident id.ExecutionQuery
ExecutionQuery. incidentMessage(String incidentMessage)
Only selects executions with the given incident message.ExecutionQuery
ExecutionQuery. incidentMessageLike(String incidentMessageLike)
Only selects executions with an incident message like the given.ExecutionQuery
ExecutionQuery. incidentType(String incidentType)
Only selects executions with the given incident type.ExecutionQuery
ExecutionQuery. matchVariableNamesIgnoreCase()
The query will match the names of variables in a case-insensitive way.ExecutionQuery
ExecutionQuery. matchVariableValuesIgnoreCase()
The query will match the values of variables in a case-insensitive way.ExecutionQuery
ExecutionQuery. messageEventSubscription()
Only select executions that have a message event subscription.ExecutionQuery
ExecutionQuery. messageEventSubscriptionName(String messageName)
Only select executions which have a message event subscription for the given messageName.ExecutionQuery
ExecutionQuery. orderByProcessDefinitionId()
Order by process definition id (needs to be followed byQuery.asc()
orQuery.desc()
).ExecutionQuery
ExecutionQuery. orderByProcessDefinitionKey()
Order by process definition key (needs to be followed byQuery.asc()
orQuery.desc()
).ExecutionQuery
ExecutionQuery. orderByProcessInstanceId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).ExecutionQuery
ExecutionQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).ExecutionQuery
ExecutionQuery. processDefinitionId(String processDefinitionId)
Only select executions which have the given process definition id.ExecutionQuery
ExecutionQuery. processDefinitionKey(String processDefinitionKey)
Only select executions which have the given process definition key.ExecutionQuery
ExecutionQuery. processInstanceBusinessKey(String processInstanceBusinessKey)
Only select executions that belong to a process instance with the given business keyExecutionQuery
ExecutionQuery. processInstanceId(String processInstanceId)
Only select executions which have the given process instance id.ExecutionQuery
ExecutionQuery. processVariableValueEquals(String variableName, Object variableValue)
Only select executions which are part of a process that have a variable with the given name set to the given value.ExecutionQuery
ExecutionQuery. processVariableValueNotEquals(String variableName, Object variableValue)
Only select executions which are part of a process that have a variable with the given name, but with a different value than the passed value.ExecutionQuery
ExecutionQuery. signalEventSubscription(String signalName)
Deprecated.ExecutionQuery
ExecutionQuery. signalEventSubscriptionName(String signalName)
Only select executions which have a signal event subscription for the given signal name.ExecutionQuery
ExecutionQuery. suspended()
Only selects executions which are suspended, because their process instance is suspended.ExecutionQuery
ExecutionQuery. tenantIdIn(String... tenantIds)
Only selects executions with one of the given tenant ids.ExecutionQuery
ExecutionQuery. variableValueEquals(String name, Object value)
Only select executions which have a local variable with the given value.ExecutionQuery
ExecutionQuery. variableValueGreaterThan(String name, Object value)
Only select executions which have a local variable value greater than the passed value.ExecutionQuery
ExecutionQuery. variableValueGreaterThanOrEqual(String name, Object value)
Only select executions which have a local variable value greater than or equal to the passed value.ExecutionQuery
ExecutionQuery. variableValueLessThan(String name, Object value)
Only select executions which have a local variable value less than the passed value.ExecutionQuery
ExecutionQuery. variableValueLessThanOrEqual(String name, Object value)
Only select executions which have a local variable value less than or equal to the passed value.ExecutionQuery
ExecutionQuery. variableValueLike(String name, String value)
Only select executions which have a local variable value like the given value.ExecutionQuery
ExecutionQuery. variableValueNotEquals(String name, Object value)
Only select executions which have a local variable with the given name, but with a different value than the passed value.ExecutionQuery
ExecutionQuery. withoutTenantId()
Only selects executions which have no tenant id. -
Uses of ExecutionQuery in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return ExecutionQuery Modifier and Type Method Description ExecutionQuery
UpgradeTestRule. executionQuery()
-