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 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.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 Deployment
AbstractCockpitPluginTest. deploy(DeploymentBuilder deploymentBuilder, List<BpmnModelInstance> bpmnModelInstances, List<String> resources)
-
Uses of BpmnModelInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstance
RepositoryService. getBpmnModelInstance(String processDefinitionId)
Returns theBpmnModelInstance
for 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 BpmnModelInstance
BpmnModelExecutionContext. getBpmnModelInstance()
Returns theBpmnModelInstance
for 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 BpmnModelInstance
RepositoryServiceImpl. getBpmnModelInstance(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 BpmnModelInstance
GetDeploymentBpmnModelInstanceCmd. 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 BpmnModelInstance
DeploymentCache. findBpmnModelInstanceForProcessDefinition(String processDefinitionId)
BpmnModelInstance
DeploymentCache. findBpmnModelInstanceForProcessDefinition(ProcessDefinitionEntity processDefinitionEntity)
protected BpmnModelInstance
BpmnModelInstanceCache. readModelFromStream(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<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 BpmnModelInstance
ExecutionEntity. getBpmnModelInstance()
BpmnModelInstance
TaskEntity. 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 BpmnModelInstance
ExecutionImpl. 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 DeploymentBuilder
DeploymentBuilderImpl. addModelInstance(String resourceName, BpmnModelInstance modelInstance)
ProcessApplicationDeploymentBuilderImpl
ProcessApplicationDeploymentBuilderImpl. addModelInstance(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 String
AbstractProcessEngineTestCase. deployment(DeploymentBuilder deploymentBuilder, BpmnModelInstance... bpmnModelInstances)
protected String
AbstractProcessEngineTestCase. deployment(BpmnModelInstance... bpmnModelInstances)
protected String
AbstractProcessEngineTestCase. deploymentForTenant(String tenantId, String classpathResource, BpmnModelInstance modelInstance)
protected String
AbstractProcessEngineTestCase. deploymentForTenant(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 DeploymentBuilder
DeploymentBuilder. addModelInstance(String resourceName, BpmnModelInstance modelInstance)
Adds a BPMN model to the deployment.ProcessApplicationDeploymentBuilder
ProcessApplicationDeploymentBuilder. addModelInstance(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 BpmnModelInstance
BpmnModelInstance. clone()
Copies the BPMN model instance but not the model.static BpmnModelInstance
Bpmn. createEmptyModel()
Allows creating an new, emptyBpmnModelInstance
.protected BpmnModelInstance
Bpmn. doCreateEmptyModel()
protected BpmnModelInstance
Bpmn. doReadModelFromFile(File file)
protected BpmnModelInstance
Bpmn. doReadModelFromInputStream(InputStream is)
static BpmnModelInstance
Bpmn. readModelFromFile(File file)
Allows reading aBpmnModelInstance
from a File.static BpmnModelInstance
Bpmn. readModelFromStream(InputStream stream)
Allows reading aBpmnModelInstance
from anInputStream
Methods in org.camunda.bpm.model.bpmn with parameters of type BpmnModelInstance Modifier and Type Method Description static String
Bpmn. convertToString(BpmnModelInstance modelInstance)
Allows the conversion of aBpmnModelInstance
to anString
.protected String
Bpmn. doConvertToString(BpmnModelInstance modelInstance)
protected void
Bpmn. doValidateModel(BpmnModelInstance modelInstance)
protected void
Bpmn. doWriteModelToFile(File file, BpmnModelInstance modelInstance)
protected void
Bpmn. doWriteModelToOutputStream(OutputStream os, BpmnModelInstance modelInstance)
static void
Bpmn. validateModel(BpmnModelInstance modelInstance)
Validate model DOM documentstatic void
Bpmn. writeModelToFile(File file, BpmnModelInstance modelInstance)
Allows writing aBpmnModelInstance
to a File.static void
Bpmn. writeModelToStream(OutputStream stream, BpmnModelInstance modelInstance)
Allows writing aBpmnModelInstance
to 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 BpmnModelInstance
AbstractBpmnModelElementBuilder. modelInstance
Methods in org.camunda.bpm.model.bpmn.builder that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstance
AbstractBpmnModelElementBuilder. 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 class
BpmnModelInstanceImpl
The Bpmn ModelMethods in org.camunda.bpm.model.bpmn.impl that return BpmnModelInstance Modifier and Type Method Description BpmnModelInstance
BpmnModelInstanceImpl. 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 List<BpmnModelInstance>
DeployModelInstancesTask. modelInstances
Constructor parameters in org.camunda.bpm.qa.performance.engine.loadgenerator.tasks with type arguments of type BpmnModelInstance Constructor Description DeployModelInstancesTask(ProcessEngine engine, 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 BpmnModelInstance
IncidentTimestampUpdateScenario. FAILING_SERVICE_TASK_MODEL
protected static BpmnModelInstance
JobTimestampsUpdateScenario. SINGLE_JOB_MODEL
Methods in org.camunda.bpm.qa.rolling.update.scenarios.timestamp with parameters of type BpmnModelInstance Modifier and Type Method Description protected static void
AbstractTimestampUpdateScenario. deployModel(ProcessEngine processEngine, String deploymentName, 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 BpmnModelInstance
DeploymentDeployTimeScenario. DEPLOYMENT_MODEL
protected static BpmnModelInstance
ExternalTaskLockExpTimeScenario. EXT_TASK_MODEL
protected static BpmnModelInstance
IncidentTimestampScenario. FAILING_SERVICE_TASK_MODEL
protected static BpmnModelInstance
JobTimestampsScenario. SINGLE_JOB_MODEL
Methods in org.camunda.bpm.qa.upgrade.timestamp with parameters of type BpmnModelInstance Modifier and Type Method Description protected static void
AbstractTimestampMigrationScenario. deployModel(ProcessEngine processEngine, String deploymentName, String resourceName, BpmnModelInstance modelInstance)
-