| 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 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.delegate | 
 Interfaces used to include Java code in a process as the behavior of an activity 
    or as a listener to process events with  
JavaDelegates. | 
| org.camunda.bpm.engine.impl | 
 API implementation classes, which shouldn't directly be used by end-users. 
 | 
| org.camunda.bpm.engine.impl.cmd | |
| org.camunda.bpm.engine.impl.persistence.deploy | |
| org.camunda.bpm.engine.impl.persistence.entity | |
| org.camunda.bpm.engine.impl.pvm.runtime | |
| org.camunda.bpm.engine.impl.repository | |
| org.camunda.bpm.engine.impl.test | |
| org.camunda.bpm.engine.repository | 
 Classes related to the  
RepositoryService. | 
| org.camunda.bpm.model.bpmn | |
| org.camunda.bpm.model.bpmn.builder | |
| org.camunda.bpm.model.bpmn.impl | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
RepositoryService.getBpmnModelInstance(String processDefinitionId)
Returns the  
BpmnModelInstance for the given processDefinitionId. | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
BpmnModelExecutionContext.getBpmnModelInstance()
Returns the  
BpmnModelInstance for the currently executed Bpmn Model | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
RepositoryServiceImpl.getBpmnModelInstance(String processDefinitionId)  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
GetDeploymentBpmnModelInstanceCmd.execute(CommandContext commandContext)  | 
| Modifier and Type | Field and Description | 
|---|---|
protected Map<String,BpmnModelInstance> | 
DeploymentCache.bpmnModelInstanceCache  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
DeploymentCache.findBpmnModelInstanceForProcessDefinition(ProcessDefinitionEntity processDefinitionEntity)  | 
BpmnModelInstance | 
DeploymentCache.findBpmnModelInstanceForProcessDefinition(String processDefinitionId)  | 
protected BpmnModelInstance | 
DeploymentCache.loadAndCacheBpmnModelInstance(ProcessDefinitionEntity processDefinitionEntity)  | 
| Modifier and Type | Method and Description | 
|---|---|
Map<String,BpmnModelInstance> | 
DeploymentCache.getBpmnModelInstanceCache()  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
TaskEntity.getBpmnModelInstance()  | 
BpmnModelInstance | 
ExecutionEntity.getBpmnModelInstance()  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
ExecutionImpl.getBpmnModelInstance()  | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentBuilder | 
DeploymentBuilderImpl.addModelInstance(String resourceName,
                BpmnModelInstance modelInstance)  | 
ProcessApplicationDeploymentBuilderImpl | 
ProcessApplicationDeploymentBuilderImpl.addModelInstance(String resourceName,
                BpmnModelInstance modelInstance)  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
AbstractProcessEngineTestCase.deployment(BpmnModelInstance... bpmnModelInstances)  | 
| Modifier and Type | Method and Description | 
|---|---|
ProcessApplicationDeploymentBuilder | 
ProcessApplicationDeploymentBuilder.addModelInstance(String resourceName,
                BpmnModelInstance modelInstance)  | 
DeploymentBuilder | 
DeploymentBuilder.addModelInstance(String resourceName,
                BpmnModelInstance modelInstance)  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
BpmnModelInstance.clone()
Copies the BPMN model instance but not the model. 
 | 
static BpmnModelInstance | 
Bpmn.createEmptyModel()
Allows creating an new, empty  
BpmnModelInstance. | 
protected BpmnModelInstance | 
Bpmn.doCreateEmptyModel()  | 
protected BpmnModelInstance | 
Bpmn.doReadModelFromFile(File file)  | 
protected BpmnModelInstance | 
Bpmn.doReadModelFromInputStream(InputStream is)  | 
static BpmnModelInstance | 
Bpmn.readModelFromFile(File file)
Allows reading a  
BpmnModelInstance from a File. | 
static BpmnModelInstance | 
Bpmn.readModelFromStream(InputStream stream)
Allows reading a  
BpmnModelInstance from an InputStream | 
| Modifier and Type | Method and Description | 
|---|---|
static String | 
Bpmn.convertToString(BpmnModelInstance modelInstance)
Allows the conversion of a  
BpmnModelInstance to an String. | 
protected String | 
Bpmn.doConvertToString(BpmnModelInstance modelInstance)  | 
protected void | 
Bpmn.doValidateModel(BpmnModelInstance modelInstance)  | 
protected void | 
Bpmn.doWriteModelToFile(File file,
                  BpmnModelInstance modelInstance)  | 
protected void | 
Bpmn.doWriteModelToOutputStream(OutputStream os,
                          BpmnModelInstance modelInstance)  | 
static void | 
Bpmn.validateModel(BpmnModelInstance modelInstance)
Validate model DOM document 
 | 
static void | 
Bpmn.writeModelToFile(File file,
                BpmnModelInstance modelInstance)
Allows writing a  
BpmnModelInstance to a File. | 
static void | 
Bpmn.writeModelToStream(OutputStream stream,
                  BpmnModelInstance modelInstance)
Allows writing a  
BpmnModelInstance to an OutputStream. | 
| Modifier and Type | Field and Description | 
|---|---|
protected BpmnModelInstance | 
AbstractBpmnModelElementBuilder.modelInstance  | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
AbstractBpmnModelElementBuilder.done()
Finishes the process building. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
BpmnModelInstanceImpl
The Bpmn Model 
 | 
| Modifier and Type | Method and Description | 
|---|---|
BpmnModelInstance | 
BpmnModelInstanceImpl.clone()  | 
Copyright © 2018. All rights reserved.