Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstance
Packages that use 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 DeploymentsRuntimeService:
    For starting and searching ProcessInstancesTaskService:
    Exposes operations to manage human (standalone) Tasks,
    such as claiming, completing and assigning tasksIdentityService:
    Used for managing Users,
    Groups 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
Methods in org.camunda.bpm.engine that return CaseInstanceModifier and TypeMethodDescriptionCaseService.createCaseInstanceById(String caseDefinitionId) Creates a newCaseInstancein the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById(String caseDefinitionId, String businessKey) Creates a newCaseInstancein the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById(String caseDefinitionId, String businessKey, Map<String, Object> variables) Creates a newCaseInstancein the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceById(String caseDefinitionId, Map<String, Object> variables) Creates a newCaseInstancein the exactly specified version identify by the provided process definition id.CaseService.createCaseInstanceByKey(String caseDefinitionKey) Creates a newCaseInstanceof the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey(String caseDefinitionKey, String businessKey) Creates a newCaseInstanceof the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey(String caseDefinitionKey, String businessKey, Map<String, Object> variables) Creates a newCaseInstanceof the latest version of the case definition with the given key.CaseService.createCaseInstanceByKey(String caseDefinitionKey, Map<String, Object> variables) Creates a newCaseInstanceof 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 CaseInstanceModifier 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
Methods in org.camunda.bpm.engine.impl.cmmn.cmd that return CaseInstance - 
Uses of CaseInstance in org.camunda.bpm.engine.impl.cmmn.entity.runtime
Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement CaseInstanceMethods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return types with arguments of type CaseInstanceModifier and TypeMethodDescriptionCaseInstanceQueryImpl.executeList(CommandContext commandContext, Page page) 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 CaseInstanceModifier and TypeMethodDescriptionstatic CaseInstanceDtoCaseInstanceDto.fromCaseInstance(CaseInstance instance)  - 
Uses of CaseInstance in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return CaseInstanceModifier and TypeMethodDescriptionCaseInstanceBuilder.create()Creates a newCaseInstance, which will be in theACTIVEstate. - 
Uses of CaseInstance in org.camunda.bpm.engine.test.assertions.cmmn
Methods in org.camunda.bpm.engine.test.assertions.cmmn with parameters of type CaseInstanceModifier and TypeMethodDescriptionprotected static CaseInstanceAssertCaseInstanceAssert.assertThat(ProcessEngine engine, CaseInstance actual) static CaseInstanceAssertCmmnAwareTests.assertThat(CaseInstance actual) Assert that...static CaseExecutionCmmnAwareTests.caseExecution(String activityId, CaseInstance caseInstance) Helper method to find anyCaseExecutionin the context of a CaseInstance.static CaseExecutionCmmnAwareTests.caseExecution(CaseExecutionQuery caseExecutionQuery, CaseInstance caseInstance) Helper method to find anyCaseExecutionin the context of a CaseInstanceConstructors in org.camunda.bpm.engine.test.assertions.cmmn with parameters of type CaseInstanceModifierConstructorDescriptionprotectedCaseInstanceAssert(ProcessEngine engine, CaseInstance actual)  - 
Uses of CaseInstance in org.camunda.bpm.qa.upgrade
Methods in org.camunda.bpm.qa.upgrade that return CaseInstance