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.cmd | |
org.camunda.bpm.engine.impl.cmmn.entity.runtime | |
org.camunda.bpm.engine.impl.test | |
org.camunda.bpm.engine.rest.dto.runtime | |
org.camunda.bpm.engine.runtime |
Classes related to the
RuntimeService . |
Modifier and Type | Method and Description |
---|---|
CaseInstance |
CaseService.createCaseInstanceById(String caseDefinitionId)
Creates a new
CaseInstance in the exactly specified version identify by the provided
process definition id. |
CaseInstance |
CaseService.createCaseInstanceById(String caseDefinitionId,
Map<String,Object> variables)
Creates a new
CaseInstance in the exactly specified version identify by the provided
process definition id. |
CaseInstance |
CaseService.createCaseInstanceById(String caseDefinitionId,
String businessKey)
Creates a new
CaseInstance in the exactly specified version identify by the provided
process definition id. |
CaseInstance |
CaseService.createCaseInstanceById(String caseDefinitionId,
String businessKey,
Map<String,Object> variables)
Creates a new
CaseInstance in the exactly specified version identify by the provided
process definition id. |
CaseInstance |
CaseService.createCaseInstanceByKey(String caseDefinitionKey)
Creates a new
CaseInstance of the latest version of the case definition
with the given key. |
CaseInstance |
CaseService.createCaseInstanceByKey(String caseDefinitionKey,
Map<String,Object> variables)
Creates a new
CaseInstance of the latest version of the case definition
with the given key. |
CaseInstance |
CaseService.createCaseInstanceByKey(String caseDefinitionKey,
String businessKey)
Creates a new
CaseInstance of the latest version of the case definition
with the given key. |
CaseInstance |
CaseService.createCaseInstanceByKey(String caseDefinitionKey,
String businessKey,
Map<String,Object> variables)
Creates a new
CaseInstance of the latest version of the case definition
with the given key. |
Modifier and Type | Method and Description |
---|---|
CaseInstance |
CaseInstanceBuilderImpl.create() |
CaseInstance |
CaseServiceImpl.createCaseInstanceById(String caseDefinitionId) |
CaseInstance |
CaseServiceImpl.createCaseInstanceById(String caseDefinitionId,
Map<String,Object> variables) |
CaseInstance |
CaseServiceImpl.createCaseInstanceById(String caseDefinitionId,
String businessKey) |
CaseInstance |
CaseServiceImpl.createCaseInstanceById(String caseDefinitionId,
String businessKey,
Map<String,Object> variables) |
CaseInstance |
CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey) |
CaseInstance |
CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey,
Map<String,Object> variables) |
CaseInstance |
CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey,
String businessKey) |
CaseInstance |
CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey,
String businessKey,
Map<String,Object> variables) |
Modifier and Type | Method and Description |
---|---|
CaseInstance |
CreateCaseInstanceCmd.execute(CommandContext commandContext) |
Modifier and Type | Class and Description |
---|---|
class |
CaseExecutionEntity |
Modifier and Type | Method and Description |
---|---|
List<CaseInstance> |
CaseInstanceQueryImpl.executeList(CommandContext commandContext,
Page page) |
List<CaseInstance> |
CaseExecutionManager.findCaseInstanceByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery,
Page page) |
Modifier and Type | Method and Description |
---|---|
protected CaseInstance |
CmmnProcessEngineTestCase.create(String caseDefinitionId) |
protected CaseInstance |
CmmnProcessEngineTestCase.create(String caseDefinitionId,
String businessKey) |
protected CaseInstance |
CmmnProcessEngineTestCase.createCaseInstance() |
protected CaseInstance |
CmmnProcessEngineTestCase.createCaseInstance(String businessKey) |
protected CaseInstance |
CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey) |
protected CaseInstance |
CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey,
String businessKey) |
Modifier and Type | Method and Description |
---|---|
static CaseInstanceDto |
CaseInstanceDto.fromCaseInstance(CaseInstance instance) |
Modifier and Type | Method and Description |
---|---|
CaseInstance |
CaseInstanceBuilder.create()
Creates a new
CaseInstance , which will be in the ACTIVE state. |
Copyright © 2018. All rights reserved.