Uses of Interface
org.camunda.bpm.model.cmmn.CmmnModelInstance
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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.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.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RepositoryService
.-
Uses of CmmnModelInstance in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionRepositoryService.getCmmnModelInstance
(String caseDefinitionId) Returns theCmmnModelInstance
for the given caseDefinitionId. -
Uses of CmmnModelInstance in org.camunda.bpm.engine.delegate
Modifier and TypeMethodDescriptionCmmnModelExecutionContext.getCmmnModelInstance()
Returns theCmmnModelInstance
for the currently executed Cmmn Model -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl
Modifier and TypeMethodDescriptionRepositoryServiceImpl.getCmmnModelInstance
(String caseDefinitionId) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.cmd
Modifier and TypeMethodDescriptionGetDeploymentCmmnModelInstanceCmd.execute
(CommandContext commandContext) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.entity.runtime
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.execution
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.handler
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.transformer
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.persistence.deploy.cache
Modifier and TypeMethodDescriptionDeploymentCache.findCmmnModelInstanceForCaseDefinition
(String caseDefinitionId) protected CmmnModelInstance
CmmnModelInstanceCache.readModelFromStream
(InputStream cmmnResourceInputStream) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.repository
Modifier and TypeMethodDescriptionDeploymentBuilderImpl.addModelInstance
(String resourceName, CmmnModelInstance modelInstance) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.repository
Modifier and TypeMethodDescriptionDeploymentBuilder.addModelInstance
(String resourceName, CmmnModelInstance modelInstance) Adds a CMMN model to the deployment. -
Uses of CmmnModelInstance in org.camunda.bpm.model.cmmn
Modifier and TypeMethodDescriptionCmmnModelInstance.clone()
Copies the CMMN model instance but not the model.static CmmnModelInstance
Cmmn.createEmptyModel()
Allows creating an new, emptyCmmnModelInstance
.protected CmmnModelInstance
Cmmn.doCreateEmptyModel()
protected CmmnModelInstance
Cmmn.doReadModelFromFile
(File file) protected CmmnModelInstance
Cmmn.doReadModelFromInputStream
(InputStream is) static CmmnModelInstance
Cmmn.readModelFromFile
(File file) Allows reading aCmmnModelInstance
from a File.static CmmnModelInstance
Cmmn.readModelFromStream
(InputStream stream) Allows reading aCmmnModelInstance
from anInputStream
Modifier and TypeMethodDescriptionstatic String
Cmmn.convertToString
(CmmnModelInstance modelInstance) Allows the conversion of aCmmnModelInstance
to anString
.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 documentstatic void
Cmmn.writeModelToFile
(File file, CmmnModelInstance modelInstance) Allows writing aCmmnModelInstance
to a File.static void
Cmmn.writeModelToStream
(OutputStream stream, CmmnModelInstance modelInstance) Allows writing aCmmnModelInstance
to anOutputStream
. -
Uses of CmmnModelInstance in org.camunda.bpm.model.cmmn.impl