Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstance
-
Packages that use CaseInstance 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 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.impl.cmmn org.camunda.bpm.engine.impl.cmmn.cmd org.camunda.bpm.engine.impl.cmmn.entity.runtime org.camunda.bpm.engine.rest.dto.runtime org.camunda.bpm.engine.runtime Classes related to theRuntimeService
.org.camunda.bpm.qa.upgrade -
-
Uses of CaseInstance in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CaseInstance Modifier and Type Method Description CaseInstance
CaseService. createCaseInstanceById(String caseDefinitionId)
Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseInstance
CaseService. createCaseInstanceById(String caseDefinitionId, String businessKey)
Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseInstance
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.CaseInstance
CaseService. createCaseInstanceById(String caseDefinitionId, Map<String,Object> variables)
Creates a newCaseInstance
in the exactly specified version identify by the provided process definition id.CaseInstance
CaseService. createCaseInstanceByKey(String caseDefinitionKey)
Creates a newCaseInstance
of the latest version of the case definition with the given key.CaseInstance
CaseService. createCaseInstanceByKey(String caseDefinitionKey, String businessKey)
Creates a newCaseInstance
of the latest version of the case definition with the given key.CaseInstance
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.CaseInstance
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
Methods in org.camunda.bpm.engine.impl.cmmn that return CaseInstance Modifier and Type Method Description CaseInstance
CaseInstanceBuilderImpl. create()
CaseInstance
CaseServiceImpl. createCaseInstanceById(String caseDefinitionId)
CaseInstance
CaseServiceImpl. createCaseInstanceById(String caseDefinitionId, String businessKey)
CaseInstance
CaseServiceImpl. createCaseInstanceById(String caseDefinitionId, String businessKey, Map<String,Object> variables)
CaseInstance
CaseServiceImpl. createCaseInstanceById(String caseDefinitionId, Map<String,Object> variables)
CaseInstance
CaseServiceImpl. createCaseInstanceByKey(String caseDefinitionKey)
CaseInstance
CaseServiceImpl. createCaseInstanceByKey(String caseDefinitionKey, String businessKey)
CaseInstance
CaseServiceImpl. createCaseInstanceByKey(String caseDefinitionKey, String businessKey, Map<String,Object> variables)
CaseInstance
CaseServiceImpl. createCaseInstanceByKey(String caseDefinitionKey, Map<String,Object> variables)
-
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn.cmd
Methods in org.camunda.bpm.engine.impl.cmmn.cmd that return CaseInstance Modifier and Type Method Description CaseInstance
CreateCaseInstanceCmd. execute(CommandContext commandContext)
-
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement CaseInstance Modifier and Type Class Description class
CaseExecutionEntity
Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return types with arguments of type CaseInstance Modifier and Type Method Description List<CaseInstance>
CaseInstanceQueryImpl. executeList(CommandContext commandContext, Page page)
List<CaseInstance>
CaseExecutionManager. findCaseInstanceByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery, Page page)
-
Uses of CaseInstance in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type CaseInstance Modifier and Type Method Description static CaseInstanceDto
CaseInstanceDto. fromCaseInstance(CaseInstance instance)
-
Uses of CaseInstance in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return CaseInstance Modifier and Type Method Description CaseInstance
CaseInstanceBuilder. create()
Creates a newCaseInstance
, which will be in theACTIVE
state. -
Uses of CaseInstance in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return CaseInstance Modifier and Type Method Description CaseInstance
UpgradeTestRule. caseInstance()
-