Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstanceBuilder
- 
Packages that use CaseInstanceBuilder 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.impl.cmmn org.camunda.bpm.engine.runtime Classes related to theRuntimeService.
- 
- 
Uses of CaseInstanceBuilder in org.camunda.bpm.engineMethods in org.camunda.bpm.engine that return CaseInstanceBuilder Modifier and Type Method Description CaseInstanceBuilderCaseService. withCaseDefinition(java.lang.String caseDefinitionId)Define aCaseInstanceusing a fluent builder.CaseInstanceBuilderCaseService. withCaseDefinitionByKey(java.lang.String caseDefinitionKey)Define aCaseInstanceusing a fluent builder.
- 
Uses of CaseInstanceBuilder in org.camunda.bpm.engine.impl.cmmnClasses in org.camunda.bpm.engine.impl.cmmn that implement CaseInstanceBuilder Modifier and Type Class Description classCaseInstanceBuilderImplMethods in org.camunda.bpm.engine.impl.cmmn that return CaseInstanceBuilder Modifier and Type Method Description CaseInstanceBuilderCaseInstanceBuilderImpl. businessKey(java.lang.String businessKey)CaseInstanceBuilderCaseInstanceBuilderImpl. caseDefinitionTenantId(java.lang.String tenantId)CaseInstanceBuilderCaseInstanceBuilderImpl. caseDefinitionWithoutTenantId()CaseInstanceBuilderCaseInstanceBuilderImpl. setVariable(java.lang.String variableName, java.lang.Object variableValue)CaseInstanceBuilderCaseInstanceBuilderImpl. setVariables(java.util.Map<java.lang.String,java.lang.Object> variables)CaseInstanceBuilderCaseServiceImpl. withCaseDefinition(java.lang.String caseDefinitionId)CaseInstanceBuilderCaseServiceImpl. withCaseDefinitionByKey(java.lang.String caseDefinitionKey)
- 
Uses of CaseInstanceBuilder in org.camunda.bpm.engine.runtimeMethods in org.camunda.bpm.engine.runtime that return CaseInstanceBuilder Modifier and Type Method Description CaseInstanceBuilderCaseInstanceBuilder. businessKey(java.lang.String businessKey)A business key can be provided to associate the case instance with a certain identifier that has a clear business meaning.CaseInstanceBuilderCaseInstanceBuilder. caseDefinitionTenantId(java.lang.String tenantId)Specify the id of the tenant the case definition belongs to.CaseInstanceBuilderCaseInstanceBuilder. caseDefinitionWithoutTenantId()Specify that the case definition belongs to no tenant.CaseInstanceBuilderCaseInstanceBuilder. setVariable(java.lang.String variableName, java.lang.Object variableValue)Pass a variable to the case instance.CaseInstanceBuilderCaseInstanceBuilder. setVariables(java.util.Map<java.lang.String,java.lang.Object> variables)Pass a map of variables to the case instance.
 
-