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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,Groups 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 withJavaDelegates.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 CmmnModelInstanceRepositoryService. getCmmnModelInstance(java.lang.String caseDefinitionId)Returns theCmmnModelInstancefor 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 CmmnModelInstanceCmmnModelExecutionContext. getCmmnModelInstance()Returns theCmmnModelInstancefor 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 CmmnModelInstanceRepositoryServiceImpl. getCmmnModelInstance(java.lang.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 CmmnModelInstanceGetDeploymentCmmnModelInstanceCmd. 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 CmmnModelInstanceCaseExecutionEntity. 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 CmmnModelInstanceCaseExecutionImpl. 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 CmmnModelInstanceCmmnHandlerContext. modelMethods in org.camunda.bpm.engine.impl.cmmn.handler that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstanceCmmnHandlerContext. getModel()Methods in org.camunda.bpm.engine.impl.cmmn.handler with parameters of type CmmnModelInstance Modifier and Type Method Description voidCmmnHandlerContext. 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 CmmnModelInstanceCmmnTransform. 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 CmmnModelInstanceDeploymentCache. findCmmnModelInstanceForCaseDefinition(java.lang.String caseDefinitionId)protected CmmnModelInstanceCmmnModelInstanceCache. readModelFromStream(java.io.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<java.lang.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 DeploymentBuilderDeploymentBuilderImpl. addModelInstance(java.lang.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 DeploymentBuilderDeploymentBuilder. addModelInstance(java.lang.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 CmmnModelInstanceCmmnModelInstance. clone()Copies the CMMN model instance but not the model.static CmmnModelInstanceCmmn. createEmptyModel()Allows creating an new, emptyCmmnModelInstance.protected CmmnModelInstanceCmmn. doCreateEmptyModel()protected CmmnModelInstanceCmmn. doReadModelFromFile(java.io.File file)protected CmmnModelInstanceCmmn. doReadModelFromInputStream(java.io.InputStream is)static CmmnModelInstanceCmmn. readModelFromFile(java.io.File file)Allows reading aCmmnModelInstancefrom a File.static CmmnModelInstanceCmmn. readModelFromStream(java.io.InputStream stream)Allows reading aCmmnModelInstancefrom anInputStreamMethods in org.camunda.bpm.model.cmmn with parameters of type CmmnModelInstance Modifier and Type Method Description static java.lang.StringCmmn. convertToString(CmmnModelInstance modelInstance)Allows the conversion of aCmmnModelInstanceto anString.protected java.lang.StringCmmn. doConvertToString(CmmnModelInstance modelInstance)protected voidCmmn. doValidateModel(CmmnModelInstance modelInstance)protected voidCmmn. doWriteModelToFile(java.io.File file, CmmnModelInstance modelInstance)protected voidCmmn. doWriteModelToOutputStream(java.io.OutputStream os, CmmnModelInstance modelInstance)static voidCmmn. validateModel(CmmnModelInstance modelInstance)Validate model DOM documentstatic voidCmmn. writeModelToFile(java.io.File file, CmmnModelInstance modelInstance)Allows writing aCmmnModelInstanceto a File.static voidCmmn. writeModelToStream(java.io.OutputStream stream, CmmnModelInstance modelInstance)Allows writing aCmmnModelInstanceto 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 classCmmnModelInstanceImplMethods in org.camunda.bpm.model.cmmn.impl that return CmmnModelInstance Modifier and Type Method Description CmmnModelInstanceCmmnModelInstanceImpl. clone()
-