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

Packages that use CaseInstanceQuery
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.entity.runtime   
org.camunda.bpm.engine.runtime Classes related to the RuntimeService
 

Uses of CaseInstanceQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return CaseInstanceQuery
 CaseInstanceQuery CaseService.createCaseInstanceQuery()
          Creates a new CaseInstanceQuery instance, that can be used to query case instances.
 

Uses of CaseInstanceQuery in org.camunda.bpm.engine.impl.cmmn
 

Methods in org.camunda.bpm.engine.impl.cmmn that return CaseInstanceQuery
 CaseInstanceQuery CaseServiceImpl.createCaseInstanceQuery()
           
 

Uses of CaseInstanceQuery in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 

Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement CaseInstanceQuery
 class CaseInstanceQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return CaseInstanceQuery
 CaseInstanceQuery CaseInstanceQueryImpl.active()
           
 CaseInstanceQuery CaseInstanceQueryImpl.caseDefinitionId(String caseDefinitionId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.caseDefinitionKey(String caseDefinitionKey)
           
 CaseInstanceQuery CaseInstanceQueryImpl.caseInstanceBusinessKey(String caseInstanceBusinessKey)
           
 CaseInstanceQuery CaseInstanceQueryImpl.caseInstanceId(String caseInstanceId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.completed()
           
 CaseInstanceQuery CaseInstanceQueryImpl.deploymentId(String deploymentId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.orderByCaseDefinitionId()
           
 CaseInstanceQuery CaseInstanceQueryImpl.orderByCaseDefinitionKey()
           
 CaseInstanceQuery CaseInstanceQueryImpl.orderByCaseInstanceId()
           
 CaseInstanceQuery CaseInstanceQueryImpl.orderByTenantId()
           
 CaseInstanceQuery CaseInstanceQueryImpl.subCaseInstanceId(String subCaseInstanceId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.subProcessInstanceId(String subProcessInstanceId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.superCaseInstanceId(String superCaseInstanceId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.superProcessInstanceId(String superProcessInstanceId)
           
 CaseInstanceQuery CaseInstanceQueryImpl.tenantIdIn(String... tenantIds)
           
 CaseInstanceQuery CaseInstanceQueryImpl.terminated()
           
 CaseInstanceQuery CaseInstanceQueryImpl.withoutTenantId()
           
 

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

Methods in org.camunda.bpm.engine.runtime that return CaseInstanceQuery
 CaseInstanceQuery CaseInstanceQuery.active()
          Only select case instances which are active.
 CaseInstanceQuery CaseInstanceQuery.caseDefinitionId(String caseDefinitionId)
          Selects the case instances which are defined by a case definition with the given id.
 CaseInstanceQuery CaseInstanceQuery.caseDefinitionKey(String caseDefinitionKey)
          Select the case instances which are defined by a case definition with the given key.
 CaseInstanceQuery CaseInstanceQuery.caseInstanceBusinessKey(String caseInstanceBusinessKey)
          Select case instances with the given business key
 CaseInstanceQuery CaseInstanceQuery.caseInstanceId(String caseInstanceId)
          Select the case instance with the given id
 CaseInstanceQuery CaseInstanceQuery.completed()
          Only select case instances which are completed.
 CaseInstanceQuery CaseInstanceQuery.deploymentId(String deploymentId)
          Selects the case instances which belong to the given deployment id.
 CaseInstanceQuery CaseInstanceQuery.orderByCaseDefinitionId()
          Order by case definition id (needs to be followed by Query.asc() or Query.desc()).
 CaseInstanceQuery CaseInstanceQuery.orderByCaseDefinitionKey()
          Order by case definition key (needs to be followed by Query.asc() or Query.desc()).
 CaseInstanceQuery CaseInstanceQuery.orderByCaseInstanceId()
          Order by id (needs to be followed by Query.asc() or Query.desc()).
 CaseInstanceQuery CaseInstanceQuery.orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 CaseInstanceQuery CaseInstanceQuery.subCaseInstanceId(String subCaseInstanceId)
          Select the case instance that has as sub case instance the given case instance.
 CaseInstanceQuery CaseInstanceQuery.subProcessInstanceId(String subProcessInstanceId)
          Select the case instance that has as sub process instance the given process instance.
 CaseInstanceQuery CaseInstanceQuery.superCaseInstanceId(String superCaseInstanceId)
          Select the case instances which are a sub case instance of the given super case instance.
 CaseInstanceQuery CaseInstanceQuery.superProcessInstanceId(String superProcessInstanceId)
          Select the case instances which are a sub case instance of the given super process instance.
 CaseInstanceQuery CaseInstanceQuery.tenantIdIn(String... tenantIds)
          Only select case instances with one of the given tenant ids.
 CaseInstanceQuery CaseInstanceQuery.terminated()
          Only select case instances which are terminated.
 CaseInstanceQuery CaseInstanceQuery.variableValueEquals(String name, Object value)
          Only select cases instances which have a global variable with the given value.
 CaseInstanceQuery CaseInstanceQuery.variableValueGreaterThan(String name, Object value)
          Only select cases instances which have a global variable value greater than the passed value.
 CaseInstanceQuery CaseInstanceQuery.variableValueGreaterThanOrEqual(String name, Object value)
          Only select cases instances which have a global variable value greater than or equal to the passed value.
 CaseInstanceQuery CaseInstanceQuery.variableValueLessThan(String name, Object value)
          Only select cases instances which have a global variable value less than the passed value.
 CaseInstanceQuery CaseInstanceQuery.variableValueLessThanOrEqual(String name, Object value)
          Only select cases instances which have a global variable value less than or equal to the passed value.
 CaseInstanceQuery CaseInstanceQuery.variableValueLike(String name, String value)
          Only select cases instances which have a global variable value like the given value.
 CaseInstanceQuery CaseInstanceQuery.variableValueNotEquals(String name, Object value)
          Only select cases instances which have a global variable with the given name, but with a different value than the passed value.
 CaseInstanceQuery CaseInstanceQuery.withoutTenantId()
          Only select case instances which have no tenant id.
 



Copyright © 2016 camunda services GmbH. All rights reserved.