Package | Description |
---|---|
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 Deployment sRuntimeService :
For starting and searching ProcessInstance sTaskService :
Exposes operations to manage human (standalone) Task s,
such as claiming, completing and assigning tasksIdentityService :
Used for managing User s,
Group s 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.rest.dto.runtime | |
org.camunda.bpm.engine.runtime |
Classes related to the
RuntimeService . |
org.camunda.bpm.qa.upgrade |
Modifier and Type | Method and Description |
---|---|
CaseExecutionQuery |
CaseService.createCaseExecutionQuery()
Creates a new
CaseExecutionQuery instance,
that can be used to query the executions and case instances. |
Modifier and Type | Method and Description |
---|---|
CaseExecutionQuery |
CaseServiceImpl.createCaseExecutionQuery() |
Modifier and Type | Class and Description |
---|---|
class |
CaseExecutionQueryImpl |
Modifier and Type | Method and Description |
---|---|
protected CaseExecutionQuery |
CaseExecutionQueryDto.createNewQuery(ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected void |
CaseExecutionQueryDto.applyFilters(CaseExecutionQuery query) |
protected void |
CaseExecutionQueryDto.applySortBy(CaseExecutionQuery query,
String sortBy,
Map<String,Object> parameters,
ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
CaseExecutionQuery |
CaseExecutionQuery.active()
Only select case executions which are active.
|
CaseExecutionQuery |
CaseExecutionQuery.activityId(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(String caseDefinitionId)
Only select case executions which have the given case definition id.
|
CaseExecutionQuery |
CaseExecutionQuery.caseDefinitionKey(String caseDefinitionKey)
Only select case executions which have the given case definition key.
|
CaseExecutionQuery |
CaseExecutionQuery.caseExecutionId(String executionId)
Only select case executions with the given id.
|
CaseExecutionQuery |
CaseExecutionQuery.caseInstanceBusinessKey(String caseInstanceBusinessKey)
Only select case executions that belong to a case instance with the given business key
|
CaseExecutionQuery |
CaseExecutionQuery.caseInstanceId(String caseInstanceId)
Only select case executions which have the given case instance id.
|
CaseExecutionQuery |
CaseExecutionQuery.caseInstanceVariableValueEquals(String name,
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(String name,
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(String name,
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(String name,
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(String name,
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(String name,
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(String name,
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.orderByCaseDefinitionId()
Order by case definition id (needs to be followed by
Query.asc() or Query.desc() ). |
CaseExecutionQuery |
CaseExecutionQuery.orderByCaseDefinitionKey()
Order by case definition key (needs to be followed by
Query.asc() or Query.desc() ). |
CaseExecutionQuery |
CaseExecutionQuery.orderByCaseExecutionId()
Order by id (needs to be followed by
Query.asc() or Query.desc() ). |
CaseExecutionQuery |
CaseExecutionQuery.orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc() ). |
CaseExecutionQuery |
CaseExecutionQuery.required()
Only select case executions which are required.
|
CaseExecutionQuery |
CaseExecutionQuery.tenantIdIn(String... tenantIds)
Only select case execution with one of the given tenant ids.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueEquals(String name,
Object value)
Only select case executions which have a local variable with the given value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueGreaterThan(String name,
Object value)
Only select case executions which have a variable value greater than the passed value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueGreaterThanOrEqual(String name,
Object value)
Only select case executions which have a local variable value greater than or equal to
the passed value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueLessThan(String name,
Object value)
Only select case executions which have a local variable value less than the passed value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueLessThanOrEqual(String name,
Object value)
Only select case executions which have a local variable value less than or equal to the passed value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueLike(String name,
String value)
Only select case executions which have a local variable value like the given value.
|
CaseExecutionQuery |
CaseExecutionQuery.variableValueNotEquals(String name,
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.
|
Modifier and Type | Method and Description |
---|---|
CaseExecutionQuery |
UpgradeTestRule.caseExecutionQuery() |
Copyright © 2017. All rights reserved.