Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstanceQuery
-
Packages that use CaseInstanceQuery 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 CaseInstanceQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CaseInstanceQuery Modifier and Type Method Description CaseInstanceQuery
CaseService. createCaseInstanceQuery()
Creates a newCaseInstanceQuery
instance, that can be used to query case instances. -
Uses of CaseInstanceQuery in org.camunda.bpm.engine.impl.cmmn
Methods in org.camunda.bpm.engine.impl.cmmn that return CaseInstanceQuery Modifier and Type Method Description CaseInstanceQuery
CaseServiceImpl. createCaseInstanceQuery()
-
Uses of CaseInstanceQuery in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement CaseInstanceQuery Modifier and Type Class Description class
CaseInstanceQueryImpl
-
Uses of CaseInstanceQuery in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime that return CaseInstanceQuery Modifier and Type Method Description protected CaseInstanceQuery
CaseInstanceQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type CaseInstanceQuery Modifier and Type Method Description protected void
CaseInstanceQueryDto. applyFilters(CaseInstanceQuery query)
protected void
CaseInstanceQueryDto. applySortBy(CaseInstanceQuery query, String sortBy, Map<String,Object> parameters, ProcessEngine engine)
-
Uses of CaseInstanceQuery in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return CaseInstanceQuery Modifier and Type Method Description CaseInstanceQuery
CaseInstanceQuery. active()
Only select case instances which are active.CaseInstanceQuery
CaseInstanceQuery. caseDefinitionId(String caseDefinitionId)
Selects the case instances which are defined by a case definition with the given id.CaseInstanceQuery
CaseInstanceQuery. caseDefinitionKey(String caseDefinitionKey)
Select the case instances which are defined by a case definition with the given key.CaseInstanceQuery
CaseInstanceQuery. caseInstanceBusinessKey(String caseInstanceBusinessKey)
Select case instances with the given business keyCaseInstanceQuery
CaseInstanceQuery. caseInstanceId(String caseInstanceId)
Select the case instance with the given idCaseInstanceQuery
CaseInstanceQuery. completed()
Only select case instances which are completed.CaseInstanceQuery
CaseInstanceQuery. deploymentId(String deploymentId)
Selects the case instances which belong to the given deployment id.CaseInstanceQuery
CaseInstanceQuery. matchVariableNamesIgnoreCase()
The query will match the names of variables in a case-insensitive way.CaseInstanceQuery
CaseInstanceQuery. matchVariableValuesIgnoreCase()
The query will match the values of variables in a case-insensitive way.CaseInstanceQuery
CaseInstanceQuery. orderByCaseDefinitionId()
Order by case definition id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseInstanceQuery
CaseInstanceQuery. orderByCaseDefinitionKey()
Order by case definition key (needs to be followed byQuery.asc()
orQuery.desc()
).CaseInstanceQuery
CaseInstanceQuery. orderByCaseInstanceId()
Order by id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseInstanceQuery
CaseInstanceQuery. orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).CaseInstanceQuery
CaseInstanceQuery. subCaseInstanceId(String subCaseInstanceId)
Select the case instance that has as sub case instance the given case instance.CaseInstanceQuery
CaseInstanceQuery. subProcessInstanceId(String subProcessInstanceId)
Select the case instance that has as sub process instance the given process instance.CaseInstanceQuery
CaseInstanceQuery. superCaseInstanceId(String superCaseInstanceId)
Select the case instances which are a sub case instance of the given super case instance.CaseInstanceQuery
CaseInstanceQuery. superProcessInstanceId(String superProcessInstanceId)
Select the case instances which are a sub case instance of the given super process instance.CaseInstanceQuery
CaseInstanceQuery. tenantIdIn(String... tenantIds)
Only select case instances with one of the given tenant ids.CaseInstanceQuery
CaseInstanceQuery. terminated()
Only select case instances which are terminated.CaseInstanceQuery
CaseInstanceQuery. variableValueEquals(String name, Object value)
Only select cases instances which have a global variable with the given value.CaseInstanceQuery
CaseInstanceQuery. variableValueGreaterThan(String name, Object value)
Only select cases instances which have a global variable value greater than the passed value.CaseInstanceQuery
CaseInstanceQuery. variableValueGreaterThanOrEqual(String name, Object value)
Only select cases instances which have a global variable value greater than or equal to the passed value.CaseInstanceQuery
CaseInstanceQuery. variableValueLessThan(String name, Object value)
Only select cases instances which have a global variable value less than the passed value.CaseInstanceQuery
CaseInstanceQuery. variableValueLessThanOrEqual(String name, Object value)
Only select cases instances which have a global variable value less than or equal to the passed value.CaseInstanceQuery
CaseInstanceQuery. variableValueLike(String name, String value)
Only select cases instances which have a global variable value like the given value.CaseInstanceQuery
CaseInstanceQuery. variableValueNotEquals(String name, Object value)
Only select cases instances which have a global variable with the given name, but with a different value than the passed value.CaseInstanceQuery
CaseInstanceQuery. variableValueNotLike(String name, String value)
Only select case instances which have a global variable with the given name and not matching the given value.CaseInstanceQuery
CaseInstanceQuery. withoutTenantId()
Only select case instances which have no tenant id. -
Uses of CaseInstanceQuery in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return CaseInstanceQuery Modifier and Type Method Description CaseInstanceQuery
UpgradeTestRule. caseInstanceQuery()
-