|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use CaseInstanceQuery | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM engine. 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 DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups and the relations between themManagementService:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService:
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.runtime | Classes related to the RuntimeService. |
| Uses of CaseInstanceQuery in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return CaseInstanceQuery | |
|---|---|
CaseInstanceQuery |
CaseService.createCaseInstanceQuery()
Creates a new CaseInstanceQuery 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 | |
|---|---|
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 | |
|---|---|
class |
CaseInstanceQueryImpl
|
| Uses of CaseInstanceQuery in org.camunda.bpm.engine.runtime |
|---|
| Methods in org.camunda.bpm.engine.runtime that return CaseInstanceQuery | |
|---|---|
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 key |
CaseInstanceQuery |
CaseInstanceQuery.caseInstanceId(String caseInstanceId)
Select the case instance with the given id |
CaseInstanceQuery |
CaseInstanceQuery.completed()
Only select case instances which are completed. |
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseDefinitionId()
Order by case definition id (needs to be followed by Query.asc() or Query.desc()). |
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseDefinitionKey()
Order by case definition key (needs to be followed by Query.asc() or Query.desc()). |
CaseInstanceQuery |
CaseInstanceQuery.orderByCaseInstanceId()
Order by id (needs to be followed by Query.asc() or Query.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.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. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||