Uses of Interface
org.camunda.bpm.engine.runtime.CaseExecutionQuery
-
Packages that use CaseExecutionQuery 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.cmmn org.camunda.bpm.engine.impl.cmmn.entity.runtime org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService
.org.camunda.bpm.qa.upgrade -
-
Uses of CaseExecutionQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CaseExecutionQuery Modifier and Type Method Description CaseExecutionQuery
CaseService. createCaseExecutionQuery()
Creates a newCaseExecutionQuery
instance, that can be used to query the executions and case instances. -
Uses of CaseExecutionQuery in org.camunda.bpm.engine.impl.cmmn
Methods in org.camunda.bpm.engine.impl.cmmn that return CaseExecutionQuery Modifier and Type Method Description CaseExecutionQuery
CaseServiceImpl. createCaseExecutionQuery()
-
Uses of CaseExecutionQuery in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement CaseExecutionQuery Modifier and Type Class Description class
CaseExecutionQueryImpl
Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return CaseExecutionQuery Modifier and Type Method Description CaseExecutionQuery
CaseExecutionQueryImpl. active()
CaseExecutionQuery
CaseExecutionQueryImpl. activityId(java.lang.String activityId)
CaseExecutionQuery
CaseExecutionQueryImpl. available()
CaseExecutionQuery
CaseExecutionQueryImpl. caseDefinitionId(java.lang.String caseDefinitionId)
CaseExecutionQuery
CaseExecutionQueryImpl. caseDefinitionKey(java.lang.String caseDefinitionKey)
CaseExecutionQuery
CaseExecutionQueryImpl. caseExecutionId(java.lang.String caseExecutionId)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceBusinessKey(java.lang.String caseInstanceBusinessKey)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceId(java.lang.String caseInstanceId)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueEquals(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueGreaterThan(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueGreaterThanOrEqual(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueLessThan(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueLessThanOrEqual(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueLike(java.lang.String name, java.lang.String value)
CaseExecutionQuery
CaseExecutionQueryImpl. caseInstanceVariableValueNotEquals(java.lang.String name, java.lang.Object value)
CaseExecutionQuery
CaseExecutionQueryImpl. disabled()
CaseExecutionQuery
CaseExecutionQueryImpl. enabled()
CaseExecutionQuery
CaseExecutionQueryImpl. orderByCaseDefinitionId()
CaseExecutionQuery
CaseExecutionQueryImpl. orderByCaseDefinitionKey()
CaseExecutionQuery
CaseExecutionQueryImpl. orderByCaseExecutionId()
CaseExecutionQuery
CaseExecutionQueryImpl. orderByTenantId()
CaseExecutionQuery
CaseExecutionQueryImpl. required()
CaseExecutionQuery
CaseExecutionQueryImpl. tenantIdIn(java.lang.String... tenantIds)
CaseExecutionQuery
CaseExecutionQueryImpl. withoutTenantId()
-
Uses of CaseExecutionQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return CaseExecutionQuery Modifier and Type Method Description protected CaseExecutionQuery
CaseExecutionQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type CaseExecutionQuery Modifier and Type Method Description protected void
CaseExecutionQueryDto. applyFilters(CaseExecutionQuery query)
protected void
CaseExecutionQueryDto. applySortBy(CaseExecutionQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine)
-
Uses of CaseExecutionQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return CaseExecutionQuery Modifier and Type Method Description CaseExecutionQuery
CaseExecutionQuery. active()
Only select case executions which are active.CaseExecutionQuery
CaseExecutionQuery. activityId(java.lang.String activityId)
Only select case executions which contain an activity with the given id.CaseExecutionQuery
CaseExecutionQuery. available()
Only select case executions which are available.CaseExecutionQuery
CaseExecutionQuery. caseDefinitionId(java.lang.String caseDefinitionId)
Only select case executions which have the given case definition id.CaseExecutionQuery
CaseExecutionQuery. caseDefinitionKey(java.lang.String caseDefinitionKey)
Only select case executions which have the given case definition key.CaseExecutionQuery
CaseExecutionQuery. caseExecutionId(java.lang.String executionId)
Only select case executions with the given id.CaseExecutionQuery
CaseExecutionQuery. caseInstanceBusinessKey(java.lang.String caseInstanceBusinessKey)
Only select case executions that belong to a case instance with the given business keyCaseExecutionQuery
CaseExecutionQuery. caseInstanceId(java.lang.String caseInstanceId)
Only select case executions which have the given case instance id.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueEquals(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable with the given name set to the given value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueGreaterThan(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable with the given name and a variable value greater than the passed value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueGreaterThanOrEqual(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable value greater than or equal to the passed value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueLessThan(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable value less than the passed value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueLessThanOrEqual(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable value less than or equal to the passed value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueLike(java.lang.String name, java.lang.String value)
Only select case executions which are part of a case instance that have a variable value like the given value.CaseExecutionQuery
CaseExecutionQuery. caseInstanceVariableValueNotEquals(java.lang.String name, java.lang.Object value)
Only select case executions which are part of a case instance that have a variable with the given name, but with a different value than the passed value.CaseExecutionQuery
CaseExecutionQuery. disabled()
Only select case executions which are disabled.CaseExecutionQuery
CaseExecutionQuery. enabled()
Only select case executions which are enabled.CaseExecutionQuery
CaseExecutionQuery. matchVariableNamesIgnoreCase()
The query will match the names of variables in a case-insensitive way.CaseExecutionQuery
CaseExecutionQuery. matchVariableValuesIgnoreCase()
The query will match the values of variables in a case-insensitive way.CaseExecutionQuery
CaseExecutionQuery. orderByCaseDefinitionId()
Order by case definition id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseExecutionQuery
CaseExecutionQuery. orderByCaseDefinitionKey()
Order by case definition key (needs to be followed byQuery.asc()
orQuery.desc()
).CaseExecutionQuery
CaseExecutionQuery. orderByCaseExecutionId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseExecutionQuery
CaseExecutionQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseExecutionQuery
CaseExecutionQuery. required()
Only select case executions which are required.CaseExecutionQuery
CaseExecutionQuery. tenantIdIn(java.lang.String... tenantIds)
Only select case execution with one of the given tenant ids.CaseExecutionQuery
CaseExecutionQuery. variableValueEquals(java.lang.String name, java.lang.Object value)
Only select case executions which have a local variable with the given value.CaseExecutionQuery
CaseExecutionQuery. variableValueGreaterThan(java.lang.String name, java.lang.Object value)
Only select case executions which have a variable value greater than the passed value.CaseExecutionQuery
CaseExecutionQuery. variableValueGreaterThanOrEqual(java.lang.String name, java.lang.Object value)
Only select case executions which have a local variable value greater than or equal to the passed value.CaseExecutionQuery
CaseExecutionQuery. variableValueLessThan(java.lang.String name, java.lang.Object value)
Only select case executions which have a local variable value less than the passed value.CaseExecutionQuery
CaseExecutionQuery. variableValueLessThanOrEqual(java.lang.String name, java.lang.Object value)
Only select case executions which have a local variable value less than or equal to the passed value.CaseExecutionQuery
CaseExecutionQuery. variableValueLike(java.lang.String name, java.lang.String value)
Only select case executions which have a local variable value like the given value.CaseExecutionQuery
CaseExecutionQuery. variableValueNotEquals(java.lang.String name, java.lang.Object value)
Only select case executions which have a local variable with the given name, but with a different value than the passed value.CaseExecutionQuery
CaseExecutionQuery. withoutTenantId()
Only select case executions which have no tenant id. -
Uses of CaseExecutionQuery in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return CaseExecutionQuery Modifier and Type Method Description CaseExecutionQuery
UpgradeTestRule. caseExecutionQuery()
-