Uses of Interface
org.camunda.bpm.model.bpmn.BpmnModelInstance
-
Packages that use BpmnModelInstance Package Description org.camunda.bpm.cockpit.plugin.test 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.cmd org.camunda.bpm.engine.impl.persistence.deploy.cache org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.impl.pvm.runtime org.camunda.bpm.engine.impl.repository org.camunda.bpm.engine.impl.test org.camunda.bpm.engine.repository Classes related to theRepositoryService.org.camunda.bpm.model.bpmn org.camunda.bpm.model.bpmn.builder org.camunda.bpm.model.bpmn.impl org.camunda.bpm.qa.performance.engine.loadgenerator.tasks org.camunda.bpm.qa.rolling.update.scenarios.timestamp org.camunda.bpm.qa.upgrade.timestamp -
-
Uses of BpmnModelInstance in org.camunda.bpm.cockpit.plugin.test
Method parameters in org.camunda.bpm.cockpit.plugin.test with type arguments of type BpmnModelInstance Modifier and Type Method Description protected DeploymentAbstractCockpitPluginTest. deploy(DeploymentBuilder deploymentBuilder, java.util.List<BpmnModelInstance> bpmnModelInstances, java.util.List<java.lang.String> resources) -
Uses of BpmnModelInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceRepositoryService. getBpmnModelInstance(java.lang.String processDefinitionId)Returns theBpmnModelInstancefor the given processDefinitionId. -
Uses of BpmnModelInstance in org.camunda.bpm.engine.delegate
Methods in org.camunda.bpm.engine.delegate that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceBpmnModelExecutionContext. getBpmnModelInstance()Returns theBpmnModelInstancefor the currently executed Bpmn Model -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceRepositoryServiceImpl. getBpmnModelInstance(java.lang.String processDefinitionId) -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceGetDeploymentBpmnModelInstanceCmd. execute(CommandContext commandContext) -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.persistence.deploy.cache
Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceDeploymentCache. findBpmnModelInstanceForProcessDefinition(java.lang.String processDefinitionId)BpmnModelInstanceDeploymentCache. findBpmnModelInstanceForProcessDefinition(ProcessDefinitionEntity processDefinitionEntity)protected BpmnModelInstanceBpmnModelInstanceCache. readModelFromStream(java.io.InputStream bpmnResourceInputStream)Methods in org.camunda.bpm.engine.impl.persistence.deploy.cache that return types with arguments of type BpmnModelInstance Modifier and Type Method Description org.camunda.commons.utils.cache.Cache<java.lang.String,BpmnModelInstance>DeploymentCache. getBpmnModelInstanceCache() -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceExecutionEntity. getBpmnModelInstance()BpmnModelInstanceTaskEntity. getBpmnModelInstance() -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.pvm.runtime
Methods in org.camunda.bpm.engine.impl.pvm.runtime that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceExecutionImpl. getBpmnModelInstance() -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.repository
Methods in org.camunda.bpm.engine.impl.repository with parameters of type BpmnModelInstance Modifier and Type Method Description DeploymentBuilderDeploymentBuilderImpl. addModelInstance(java.lang.String resourceName, BpmnModelInstance modelInstance)ProcessApplicationDeploymentBuilderImplProcessApplicationDeploymentBuilderImpl. addModelInstance(java.lang.String resourceName, BpmnModelInstance modelInstance) -
Uses of BpmnModelInstance in org.camunda.bpm.engine.impl.test
Methods in org.camunda.bpm.engine.impl.test with parameters of type BpmnModelInstance Modifier and Type Method Description protected java.lang.StringAbstractProcessEngineTestCase. deployment(DeploymentBuilder deploymentBuilder, BpmnModelInstance... bpmnModelInstances)protected java.lang.StringAbstractProcessEngineTestCase. deployment(BpmnModelInstance... bpmnModelInstances)protected java.lang.StringAbstractProcessEngineTestCase. deploymentForTenant(java.lang.String tenantId, java.lang.String classpathResource, BpmnModelInstance modelInstance)protected java.lang.StringAbstractProcessEngineTestCase. deploymentForTenant(java.lang.String tenantId, BpmnModelInstance... bpmnModelInstances) -
Uses of BpmnModelInstance in org.camunda.bpm.engine.repository
Methods in org.camunda.bpm.engine.repository with parameters of type BpmnModelInstance Modifier and Type Method Description DeploymentBuilderDeploymentBuilder. addModelInstance(java.lang.String resourceName, BpmnModelInstance modelInstance)Adds a BPMN model to the deployment.ProcessApplicationDeploymentBuilderProcessApplicationDeploymentBuilder. addModelInstance(java.lang.String resourceName, BpmnModelInstance modelInstance) -
Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn
Methods in org.camunda.bpm.model.bpmn that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceBpmnModelInstance. clone()Copies the BPMN model instance but not the model.static BpmnModelInstanceBpmn. createEmptyModel()Allows creating an new, emptyBpmnModelInstance.protected BpmnModelInstanceBpmn. doCreateEmptyModel()protected BpmnModelInstanceBpmn. doReadModelFromFile(java.io.File file)protected BpmnModelInstanceBpmn. doReadModelFromInputStream(java.io.InputStream is)static BpmnModelInstanceBpmn. readModelFromFile(java.io.File file)Allows reading aBpmnModelInstancefrom a File.static BpmnModelInstanceBpmn. readModelFromStream(java.io.InputStream stream)Allows reading aBpmnModelInstancefrom anInputStreamMethods in org.camunda.bpm.model.bpmn with parameters of type BpmnModelInstance Modifier and Type Method Description static java.lang.StringBpmn. convertToString(BpmnModelInstance modelInstance)Allows the conversion of aBpmnModelInstanceto anString.protected java.lang.StringBpmn. doConvertToString(BpmnModelInstance modelInstance)protected voidBpmn. doValidateModel(BpmnModelInstance modelInstance)protected voidBpmn. doWriteModelToFile(java.io.File file, BpmnModelInstance modelInstance)protected voidBpmn. doWriteModelToOutputStream(java.io.OutputStream os, BpmnModelInstance modelInstance)static voidBpmn. validateModel(BpmnModelInstance modelInstance)Validate model DOM documentstatic voidBpmn. writeModelToFile(java.io.File file, BpmnModelInstance modelInstance)Allows writing aBpmnModelInstanceto a File.static voidBpmn. writeModelToStream(java.io.OutputStream stream, BpmnModelInstance modelInstance)Allows writing aBpmnModelInstanceto anOutputStream. -
Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn.builder
Fields in org.camunda.bpm.model.bpmn.builder declared as BpmnModelInstance Modifier and Type Field Description protected BpmnModelInstanceAbstractBpmnModelElementBuilder. modelInstanceMethods in org.camunda.bpm.model.bpmn.builder that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceAbstractBpmnModelElementBuilder. done()Finishes the process building. -
Uses of BpmnModelInstance in org.camunda.bpm.model.bpmn.impl
Classes in org.camunda.bpm.model.bpmn.impl that implement BpmnModelInstance Modifier and Type Class Description classBpmnModelInstanceImplThe Bpmn ModelMethods in org.camunda.bpm.model.bpmn.impl that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstanceBpmnModelInstanceImpl. clone() -
Uses of BpmnModelInstance in org.camunda.bpm.qa.performance.engine.loadgenerator.tasks
Fields in org.camunda.bpm.qa.performance.engine.loadgenerator.tasks with type parameters of type BpmnModelInstance Modifier and Type Field Description protected java.util.List<BpmnModelInstance>DeployModelInstancesTask. modelInstancesConstructor parameters in org.camunda.bpm.qa.performance.engine.loadgenerator.tasks with type arguments of type BpmnModelInstance Constructor Description DeployModelInstancesTask(ProcessEngine engine, java.util.List<BpmnModelInstance> modelInstances) -
Uses of BpmnModelInstance in org.camunda.bpm.qa.rolling.update.scenarios.timestamp
Fields in org.camunda.bpm.qa.rolling.update.scenarios.timestamp declared as BpmnModelInstance Modifier and Type Field Description protected static BpmnModelInstanceIncidentTimestampUpdateScenario. FAILING_SERVICE_TASK_MODELprotected static BpmnModelInstanceJobTimestampsUpdateScenario. SINGLE_JOB_MODELMethods in org.camunda.bpm.qa.rolling.update.scenarios.timestamp with parameters of type BpmnModelInstance Modifier and Type Method Description protected static voidAbstractTimestampUpdateScenario. deployModel(ProcessEngine processEngine, java.lang.String deploymentName, java.lang.String resourceName, BpmnModelInstance modelInstance) -
Uses of BpmnModelInstance in org.camunda.bpm.qa.upgrade.timestamp
Fields in org.camunda.bpm.qa.upgrade.timestamp declared as BpmnModelInstance Modifier and Type Field Description protected static BpmnModelInstanceDeploymentDeployTimeScenario. DEPLOYMENT_MODELprotected static BpmnModelInstanceExternalTaskLockExpTimeScenario. EXT_TASK_MODELprotected static BpmnModelInstanceIncidentTimestampScenario. FAILING_SERVICE_TASK_MODELprotected static BpmnModelInstanceJobTimestampsScenario. SINGLE_JOB_MODELMethods in org.camunda.bpm.qa.upgrade.timestamp with parameters of type BpmnModelInstance Modifier and Type Method Description protected static voidAbstractTimestampMigrationScenario. deployModel(ProcessEngine processEngine, java.lang.String deploymentName, java.lang.String resourceName, BpmnModelInstance modelInstance)
-