Package | Description |
---|---|
org.camunda.bpm.engine |
Public API of the Camunda Platform 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.delegate |
Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegate s. |
org.camunda.bpm.engine.impl |
API implementation classes, which shouldn't directly be used by end-users.
|
org.camunda.bpm.engine.impl.cmmn.cmd | |
org.camunda.bpm.engine.impl.cmmn.entity.runtime | |
org.camunda.bpm.engine.impl.cmmn.execution | |
org.camunda.bpm.engine.impl.cmmn.handler | |
org.camunda.bpm.engine.impl.cmmn.transformer | |
org.camunda.bpm.engine.impl.persistence.deploy.cache | |
org.camunda.bpm.engine.impl.repository | |
org.camunda.bpm.engine.repository |
Classes related to the
RepositoryService . |
org.camunda.bpm.model.cmmn | |
org.camunda.bpm.model.cmmn.impl |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
RepositoryService.getCmmnModelInstance(String caseDefinitionId)
Returns the
CmmnModelInstance for the given caseDefinitionId. |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CmmnModelExecutionContext.getCmmnModelInstance()
Returns the
CmmnModelInstance for the currently executed Cmmn Model |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
RepositoryServiceImpl.getCmmnModelInstance(String caseDefinitionId) |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
GetDeploymentCmmnModelInstanceCmd.execute(CommandContext commandContext) |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CaseExecutionEntity.getCmmnModelInstance() |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CaseExecutionImpl.getCmmnModelInstance() |
Modifier and Type | Field and Description |
---|---|
protected CmmnModelInstance |
CmmnHandlerContext.model |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CmmnHandlerContext.getModel() |
Modifier and Type | Method and Description |
---|---|
void |
CmmnHandlerContext.setModel(CmmnModelInstance model) |
Modifier and Type | Field and Description |
---|---|
protected CmmnModelInstance |
CmmnTransform.model |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
DeploymentCache.findCmmnModelInstanceForCaseDefinition(String caseDefinitionId) |
protected CmmnModelInstance |
CmmnModelInstanceCache.readModelFromStream(InputStream cmmnResourceInputStream) |
Modifier and Type | Method and Description |
---|---|
org.camunda.commons.utils.cache.Cache<String,CmmnModelInstance> |
DeploymentCache.getCmmnModelInstanceCache() |
Modifier and Type | Method and Description |
---|---|
DeploymentBuilder |
DeploymentBuilderImpl.addModelInstance(String resourceName,
CmmnModelInstance modelInstance) |
Modifier and Type | Method and Description |
---|---|
DeploymentBuilder |
DeploymentBuilder.addModelInstance(String resourceName,
CmmnModelInstance modelInstance)
Adds a CMMN model to the deployment.
|
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CmmnModelInstance.clone()
Copies the CMMN model instance but not the model.
|
static CmmnModelInstance |
Cmmn.createEmptyModel()
Allows creating an new, empty
CmmnModelInstance . |
protected CmmnModelInstance |
Cmmn.doCreateEmptyModel() |
protected CmmnModelInstance |
Cmmn.doReadModelFromFile(File file) |
protected CmmnModelInstance |
Cmmn.doReadModelFromInputStream(InputStream is) |
static CmmnModelInstance |
Cmmn.readModelFromFile(File file)
Allows reading a
CmmnModelInstance from a File. |
static CmmnModelInstance |
Cmmn.readModelFromStream(InputStream stream)
Allows reading a
CmmnModelInstance from an InputStream |
Modifier and Type | Method and Description |
---|---|
static String |
Cmmn.convertToString(CmmnModelInstance modelInstance)
Allows the conversion of a
CmmnModelInstance to an String . |
protected String |
Cmmn.doConvertToString(CmmnModelInstance modelInstance) |
protected void |
Cmmn.doValidateModel(CmmnModelInstance modelInstance) |
protected void |
Cmmn.doWriteModelToFile(File file,
CmmnModelInstance modelInstance) |
protected void |
Cmmn.doWriteModelToOutputStream(OutputStream os,
CmmnModelInstance modelInstance) |
static void |
Cmmn.validateModel(CmmnModelInstance modelInstance)
Validate model DOM document
|
static void |
Cmmn.writeModelToFile(File file,
CmmnModelInstance modelInstance)
Allows writing a
CmmnModelInstance to a File. |
static void |
Cmmn.writeModelToStream(OutputStream stream,
CmmnModelInstance modelInstance)
Allows writing a
CmmnModelInstance to an OutputStream . |
Modifier and Type | Class and Description |
---|---|
class |
CmmnModelInstanceImpl |
Modifier and Type | Method and Description |
---|---|
CmmnModelInstance |
CmmnModelInstanceImpl.clone() |
Copyright © 2022. All rights reserved.