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 . |
Modifier and Type | Method and Description |
---|---|
CaseInstanceQuery |
CaseService.createCaseInstanceQuery()
Creates a new
CaseInstanceQuery instance, that can be used
to query case instances. |
Modifier and Type | Method and Description |
---|---|
CaseInstanceQuery |
CaseServiceImpl.createCaseInstanceQuery() |
Modifier and Type | Class and Description |
---|---|
class |
CaseInstanceQueryImpl |
Modifier and Type | Method and Description |
---|---|
CaseInstanceQuery |
CaseInstanceQueryImpl.active() |
CaseInstanceQuery |
CaseInstanceQueryImpl.caseDefinitionId(String caseDefinitionId) |
CaseInstanceQuery |
CaseInstanceQueryImpl.caseDefinitionKey(String caseDefinitionKey) |
CaseInstanceQuery |
CaseInstanceQueryImpl.caseInstanceBusinessKey(String caseInstanceBusinessKey) |
CaseInstanceQuery |
CaseInstanceQueryImpl.caseInstanceId(String caseInstanceId) |
CaseInstanceQuery |
CaseInstanceQueryImpl.completed() |
CaseInstanceQuery |
CaseInstanceQueryImpl.orderByCaseDefinitionId() |
CaseInstanceQuery |
CaseInstanceQueryImpl.orderByCaseDefinitionKey() |
CaseInstanceQuery |
CaseInstanceQueryImpl.orderByCaseInstanceId() |
CaseInstanceQuery |
CaseInstanceQueryImpl.terminated() |
Modifier and Type | Method and Description |
---|---|
protected CaseInstanceQuery |
CaseInstanceQueryDto.createNewQuery(ProcessEngine engine) |
Modifier and Type | Method and Description |
---|---|
protected void |
CaseInstanceQueryDto.applyFilters(CaseInstanceQuery query) |
protected void |
CaseInstanceQueryDto.applySortingOptions(CaseInstanceQuery query) |
Modifier and Type | Method and 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 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.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.
|
Copyright © 2018. All rights reserved.