Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstance
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 CaseInstance in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionCaseService.createCaseInstanceById
(String caseDefinitionId) Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById
(String caseDefinitionId, String businessKey) Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById
(String caseDefinitionId, String businessKey, Map<String, Object> variables) Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById
(String caseDefinitionId, Map<String, Object> variables) Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceByKey
(String caseDefinitionKey) Creates a newCaseInstance
of the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey
(String caseDefinitionKey, String businessKey) Creates a newCaseInstance
of the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey
(String caseDefinitionKey, String businessKey, Map<String, Object> variables) Creates a newCaseInstance
of the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey
(String caseDefinitionKey, Map<String, Object> variables) Creates a newCaseInstance
of the latest version of the case definition with the given key. -
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn
Modifier and TypeMethodDescriptionCaseInstanceBuilderImpl.create()
CaseServiceImpl.createCaseInstanceById
(String caseDefinitionId) CaseServiceImpl.createCaseInstanceById
(String caseDefinitionId, String businessKey) CaseServiceImpl.createCaseInstanceById
(String caseDefinitionId, String businessKey, Map<String, Object> variables) CaseServiceImpl.createCaseInstanceById
(String caseDefinitionId, Map<String, Object> variables) CaseServiceImpl.createCaseInstanceByKey
(String caseDefinitionKey) CaseServiceImpl.createCaseInstanceByKey
(String caseDefinitionKey, String businessKey) CaseServiceImpl.createCaseInstanceByKey
(String caseDefinitionKey, String businessKey, Map<String, Object> variables) CaseServiceImpl.createCaseInstanceByKey
(String caseDefinitionKey, Map<String, Object> variables) -
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn.cmd
-
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Modifier and TypeMethodDescriptionCaseInstanceQueryImpl.executeList
(CommandContext commandContext, Page page) CaseExecutionManager.findCaseInstanceByQueryCriteria
(CaseInstanceQueryImpl caseInstanceQuery, Page page) -
Uses of CaseInstance in org.camunda.bpm.engine.rest.dto.runtime
Modifier and TypeMethodDescriptionstatic CaseInstanceDto
CaseInstanceDto.fromCaseInstance
(CaseInstance instance) -
Uses of CaseInstance in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionCaseInstanceBuilder.create()
Creates a newCaseInstance
, which will be in theACTIVE
state. -
Uses of CaseInstance in org.camunda.bpm.engine.test.assertions.cmmn
Modifier and TypeMethodDescriptionprotected static CaseInstanceAssert
CaseInstanceAssert.assertThat
(ProcessEngine engine, CaseInstance actual) static CaseInstanceAssert
CmmnAwareTests.assertThat
(CaseInstance actual) Assert that...static CaseExecution
CmmnAwareTests.caseExecution
(String activityId, CaseInstance caseInstance) Helper method to find anyCaseExecution
in the context of a CaseInstance.static CaseExecution
CmmnAwareTests.caseExecution
(CaseExecutionQuery caseExecutionQuery, CaseInstance caseInstance) Helper method to find anyCaseExecution
in the context of a CaseInstanceModifierConstructorDescriptionprotected
CaseInstanceAssert
(ProcessEngine engine, CaseInstance actual) -
Uses of CaseInstance in org.camunda.bpm.qa.upgrade