Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstanceBuilder
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine
can be obtained.Through the services obtained from such a
ProcessEngine
, BPM and workflow operation
can be executed:RepositoryService
:
Manages Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Classes related to the
RuntimeService
.-
Uses of CaseInstanceBuilder in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionCaseService.withCaseDefinition
(String caseDefinitionId) Define aCaseInstance
using a fluent builder.CaseService.withCaseDefinitionByKey
(String caseDefinitionKey) Define aCaseInstance
using a fluent builder. -
Uses of CaseInstanceBuilder in org.camunda.bpm.engine.impl.cmmn
Modifier and TypeMethodDescriptionCaseInstanceBuilderImpl.businessKey
(String businessKey) CaseInstanceBuilderImpl.caseDefinitionTenantId
(String tenantId) CaseInstanceBuilderImpl.caseDefinitionWithoutTenantId()
CaseInstanceBuilderImpl.setVariable
(String variableName, Object variableValue) CaseInstanceBuilderImpl.setVariables
(Map<String, Object> variables) CaseServiceImpl.withCaseDefinition
(String caseDefinitionId) CaseServiceImpl.withCaseDefinitionByKey
(String caseDefinitionKey) -
Uses of CaseInstanceBuilder in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionCaseInstanceBuilder.businessKey
(String businessKey) A business key can be provided to associate the case instance with a certain identifier that has a clear business meaning.CaseInstanceBuilder.caseDefinitionTenantId
(String tenantId) Specify the id of the tenant the case definition belongs to.CaseInstanceBuilder.caseDefinitionWithoutTenantId()
Specify that the case definition belongs to no tenant.CaseInstanceBuilder.setVariable
(String variableName, Object variableValue) Pass a variable to the case instance.CaseInstanceBuilder.setVariables
(Map<String, Object> variables) Pass a map of variables to the case instance.