Uses of Interface
org.camunda.bpm.engine.runtime.CaseInstance

Packages that use CaseInstance
org.camunda.bpm.engine Public API of the camunda BPM engine.

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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, 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.impl.cmmn.cmd   
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.test   
org.camunda.bpm.engine.runtime Classes related to the RuntimeService
 

Uses of CaseInstance in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return CaseInstance
 CaseInstance CaseService.createCaseInstanceById(String caseDefinitionId)
          Creates a new CaseInstance in the exactly specified version identify by the provided process definition id.
 CaseInstance CaseService.createCaseInstanceById(String caseDefinitionId, Map<String,Object> variables)
          Creates a new CaseInstance in the exactly specified version identify by the provided process definition id.
 CaseInstance CaseService.createCaseInstanceById(String caseDefinitionId, String businessKey)
          Creates a new CaseInstance 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 new CaseInstance in the exactly specified version identify by the provided process definition id.
 CaseInstance CaseService.createCaseInstanceByKey(String caseDefinitionKey)
          Creates a new CaseInstance of the latest version of the case definition with the given key.
 CaseInstance CaseService.createCaseInstanceByKey(String caseDefinitionKey, Map<String,Object> variables)
          Creates a new CaseInstance of the latest version of the case definition with the given key.
 CaseInstance CaseService.createCaseInstanceByKey(String caseDefinitionKey, String businessKey)
          Creates a new CaseInstance 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 new CaseInstance 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
 CaseInstance CaseInstanceBuilderImpl.create()
           
 CaseInstance CaseServiceImpl.createCaseInstanceById(String caseDefinitionId)
           
 CaseInstance CaseServiceImpl.createCaseInstanceById(String caseDefinitionId, Map<String,Object> variables)
           
 CaseInstance CaseServiceImpl.createCaseInstanceById(String caseDefinitionId, String businessKey)
           
 CaseInstance CaseServiceImpl.createCaseInstanceById(String caseDefinitionId, String businessKey, Map<String,Object> variables)
           
 CaseInstance CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey)
           
 CaseInstance CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey, Map<String,Object> variables)
           
 CaseInstance CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey, String businessKey)
           
 CaseInstance CaseServiceImpl.createCaseInstanceByKey(String caseDefinitionKey, String businessKey, 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
 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
 class CaseExecutionEntity
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return types with arguments of type CaseInstance
 List<CaseInstance> CaseInstanceQueryImpl.executeList(CommandContext commandContext, Page page)
           
 List<CaseInstance> CaseExecutionManager.findCaseInstanceByQueryCriteria(CaseInstanceQueryImpl caseInstanceQuery, Page page)
           
 

Uses of CaseInstance in org.camunda.bpm.engine.impl.test
 

Methods in org.camunda.bpm.engine.impl.test that return CaseInstance
protected  CaseInstance CmmnProcessEngineTestCase.create(String caseDefinitionId)
           
protected  CaseInstance CmmnProcessEngineTestCase.create(String caseDefinitionId, String businessKey)
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstance()
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstance(String businessKey)
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey)
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey, String businessKey)
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey, String businessKey, org.camunda.bpm.engine.variable.VariableMap variables)
           
protected  CaseInstance CmmnProcessEngineTestCase.createCaseInstanceByKey(String caseDefinitionKey, org.camunda.bpm.engine.variable.VariableMap variables)
           
 

Uses of CaseInstance in org.camunda.bpm.engine.runtime
 

Methods in org.camunda.bpm.engine.runtime that return CaseInstance
 CaseInstance CaseInstanceBuilder.create()
          Creates a new CaseInstance, which will be in the ACTIVE state.
 



Copyright © 2016 camunda services GmbH. All rights reserved.