Uses of Interface
org.camunda.bpm.model.cmmn.CmmnModelInstance
-
Packages that use CmmnModelInstance Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: 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 withJavaDelegate
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 theRepositoryService
.org.camunda.bpm.model.cmmn org.camunda.bpm.model.cmmn.impl -
-
Uses of CmmnModelInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
RepositoryService. 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 CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
CmmnModelExecutionContext. 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 CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
RepositoryServiceImpl. 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 CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
GetDeploymentCmmnModelInstanceCmd. 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 Modifier and Type Method Description CmmnModelInstance
CaseExecutionEntity. getCmmnModelInstance()
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.execution
Methods in org.camunda.bpm.engine.impl.cmmn.execution that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
CaseExecutionImpl. getCmmnModelInstance()
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.handler
Fields in org.camunda.bpm.engine.impl.cmmn.handler declared as CmmnModelInstance Modifier and Type Field Description protected CmmnModelInstance
CmmnHandlerContext. model
Methods in org.camunda.bpm.engine.impl.cmmn.handler that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
CmmnHandlerContext. getModel()
Methods in org.camunda.bpm.engine.impl.cmmn.handler with parameters of type CmmnModelInstance Modifier and Type Method Description void
CmmnHandlerContext. setModel(CmmnModelInstance model)
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.cmmn.transformer
Fields in org.camunda.bpm.engine.impl.cmmn.transformer declared as CmmnModelInstance Modifier and Type Field Description protected CmmnModelInstance
CmmnTransform. model
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.persistence.deploy.cache
Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
DeploymentCache. 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 Modifier and Type Method Description org.camunda.commons.utils.cache.Cache<String,CmmnModelInstance>
DeploymentCache. getCmmnModelInstanceCache()
-
Uses of CmmnModelInstance in org.camunda.bpm.engine.impl.repository
Methods in org.camunda.bpm.engine.impl.repository with parameters of type CmmnModelInstance Modifier and Type Method Description DeploymentBuilder
DeploymentBuilderImpl. 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 CmmnModelInstance Modifier and Type Method Description DeploymentBuilder
DeploymentBuilder. 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 CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
CmmnModelInstance. 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 CmmnModelInstance Modifier and Type Method Description static 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 CmmnModelInstance Modifier and Type Class Description class
CmmnModelInstanceImpl
Methods in org.camunda.bpm.model.cmmn.impl that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstance
CmmnModelInstanceImpl. clone()
-