Uses of Interface
org.camunda.bpm.model.cmmn.CmmnModelInstance
Packages that use 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
Methods in org.camunda.bpm.engine that return CmmnModelInstanceModifier and TypeMethodDescriptionRepositoryService.getCmmnModelInstance
(String caseDefinitionId) Returns theCmmnModelInstance
for the given caseDefinitionId. -
Uses of CmmnModelInstance in org.camunda.bpm.engine.delegate
Methods in org.camunda.bpm.engine.delegate that return CmmnModelInstanceModifier and TypeMethodDescriptionCmmnModelExecutionContext.getCmmnModelInstance()
Returns theCmmnModelInstance
for the currently executed Cmmn Model -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return CmmnModelInstanceModifier and TypeMethodDescriptionRepositoryServiceImpl.getCmmnModelInstance
(String caseDefinitionId) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.cmd
Methods in org.camunda.bpm.engine.impl.cmmn.cmd that return CmmnModelInstanceModifier and TypeMethodDescriptionGetDeploymentCmmnModelInstanceCmd.execute
(CommandContext commandContext) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return CmmnModelInstance -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.execution
Methods in org.camunda.bpm.engine.impl.cmmn.execution that return CmmnModelInstance -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.handler
Fields in org.camunda.bpm.engine.impl.cmmn.handler declared as CmmnModelInstanceMethods in org.camunda.bpm.engine.impl.cmmn.handler that return CmmnModelInstanceMethods in org.camunda.bpm.engine.impl.cmmn.handler with parameters of type CmmnModelInstance -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.transformer
Fields in org.camunda.bpm.engine.impl.cmmn.transformer declared as CmmnModelInstance -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.persistence.deploy.cache
Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return CmmnModelInstanceModifier and TypeMethodDescriptionDeploymentCache.findCmmnModelInstanceForCaseDefinition
(String caseDefinitionId) protected CmmnModelInstance
CmmnModelInstanceCache.readModelFromStream
(InputStream cmmnResourceInputStream) Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return types with arguments of type CmmnModelInstance -
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.repository
Methods in org.camunda.bpm.engine.impl.repository with parameters of type CmmnModelInstanceModifier and TypeMethodDescriptionDeploymentBuilderImpl.addModelInstance
(String resourceName, CmmnModelInstance modelInstance) -
Uses of CmmnModelInstance in org.camunda.bpm.engine.repository
Methods in org.camunda.bpm.engine.repository with parameters of type CmmnModelInstanceModifier and TypeMethodDescriptionDeploymentBuilder.addModelInstance
(String resourceName, CmmnModelInstance modelInstance) Adds a CMMN model to the deployment. -
Uses of CmmnModelInstance in org.camunda.bpm.model.cmmn
Methods in org.camunda.bpm.model.cmmn that return CmmnModelInstanceModifier 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
Methods in org.camunda.bpm.model.cmmn with parameters of type CmmnModelInstanceModifier 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
Classes in org.camunda.bpm.model.cmmn.impl that implement CmmnModelInstanceMethods in org.camunda.bpm.model.cmmn.impl that return CmmnModelInstance