Uses of Interface
org.camunda.bpm.engine.history.HistoricCaseInstanceQuery

Packages that use HistoricCaseInstanceQuery
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.history Classes related to the HistoryService
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
 

Uses of HistoricCaseInstanceQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return HistoricCaseInstanceQuery
 HistoricCaseInstanceQuery HistoryService.createHistoricCaseInstanceQuery()
          Creates a new programmatic query to search for HistoricCaseInstances.
 

Uses of HistoricCaseInstanceQuery in org.camunda.bpm.engine.history
 

Methods in org.camunda.bpm.engine.history that return HistoricCaseInstanceQuery
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.active()
          Only select historic case instances which are active
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseDefinitionId(String caseDefinitionId)
          Only select historic case instances for the given case definition
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseDefinitionKey(String caseDefinitionKey)
          Only select historic case instances that are defined by a case definition with the given key.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseDefinitionKeyNotIn(List<String> caseDefinitionKeys)
          Only select historic case instances that don't have a case definition of which the key is present in the given list
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseDefinitionName(String caseDefinitionName)
          Only select historic case instances that are defined by a case definition with the given name.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseDefinitionNameLike(String nameLike)
          Only select historic case instances that are defined by case definition which name is like the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseInstanceBusinessKey(String caseInstanceBusinessKey)
          Only select historic case instances with the given business key
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseInstanceBusinessKeyLike(String caseInstanceBusinessKeyLike)
          Only select historic case instances which had a business key like the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseInstanceId(String caseInstanceId)
          Only select historic case instances with the given case instance id.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.caseInstanceIds(Set<String> caseInstanceIds)
          Only select historic case instances whose id is in the given set of ids.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.closed()
          Only select historic case instances which are closed
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.closedAfter(Date date)
          Only select historic case instances that were closed after the given date.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.closedBefore(Date date)
          Only select historic case instances that were closed before the given date.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.completed()
          Only select historic case instances which are completed
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.createdAfter(Date date)
          Only select historic case instances that were created after the given date.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.createdBefore(Date date)
          Only select historic case instances that were created before the given date.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.createdBy(String userId)
          Only select historic case instance that are created by the given user.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.notClosed()
          Only select historic case instance that are not yet closed.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseDefinitionId()
          Order by the case definition id (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseInstanceBusinessKey()
          Order by the business key (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseInstanceCloseTime()
          Order by the close time (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseInstanceCreateTime()
          Order by the create time (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseInstanceDuration()
          Order by the duration of the case instance (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByCaseInstanceId()
          Order by the case instance id (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.orderByTenantId()
          Order by tenant id (needs to be followed by Query.asc() or Query.desc()).
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.subCaseInstanceId(String subCaseInstanceId)
          Only select historic case instances having a sub case instance with the given case instance id.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.subProcessInstanceId(String subProcessInstanceId)
          Only select historic case instances having a sub process instance with the given process instance id.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.superCaseInstanceId(String superCaseInstanceId)
          Only select historic case instances started by the given case instance.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.superProcessInstanceId(String superProcessInstanceId)
          Only select historic case instances started by the given process instance.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.tenantIdIn(String... tenantIds)
          Only select historic case instances with one of the given tenant ids.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.terminated()
          Only select historic case instances which are terminated
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueEquals(String name, Object value)
          Only select case instances which have a global variable with the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueGreaterThan(String name, Object value)
          Only select case instances which had a global variable with the given name and a value greater than the given value when they where closed.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueGreaterThanOrEqual(String name, Object value)
          Only select case instances which have a global variable with the given name and a value greater or equal than the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueLessThan(String name, Object value)
          Only select case instances which have a global variable with the given name and a value less than the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueLessThanOrEqual(String name, Object value)
          Only select case instances which have a global variable with the given name and a value less or equal than the given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueLike(String name, String value)
          Only select case instances which have a global variable with the given name and a value like given value.
 HistoricCaseInstanceQuery HistoricCaseInstanceQuery.variableValueNotEquals(String name, Object value)
          Only select case instances which have a global variable with the given name but a different value.
 

Uses of HistoricCaseInstanceQuery in org.camunda.bpm.engine.impl
 

Classes in org.camunda.bpm.engine.impl that implement HistoricCaseInstanceQuery
 class HistoricCaseInstanceQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return HistoricCaseInstanceQuery
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.active()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseDefinitionKey(String caseDefinitionKey)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseDefinitionKeyNotIn(List<String> caseDefinitionKeys)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseDefinitionName(String caseDefinitionName)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseDefinitionNameLike(String nameLike)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseInstanceBusinessKey(String businessKey)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseInstanceBusinessKeyLike(String businessKeyLike)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.caseInstanceIds(Set<String> caseInstanceIds)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.closed()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.closedAfter(Date date)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.closedBefore(Date date)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.completed()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.createdAfter(Date date)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.createdBefore(Date date)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.createdBy(String userId)
           
 HistoricCaseInstanceQuery HistoryServiceImpl.createHistoricCaseInstanceQuery()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.failed()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.notClosed()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseDefinitionId()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseInstanceBusinessKey()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseInstanceCloseTime()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseInstanceCreateTime()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseInstanceDuration()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByCaseInstanceId()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.orderByTenantId()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.subCaseInstanceId(String subCaseInstanceId)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.subProcessInstanceId(String subProcessInstanceId)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.superCaseInstanceId(String superCaseInstanceId)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.superProcessInstanceId(String superProcessInstanceId)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.suspended()
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.tenantIdIn(String... tenantIds)
           
 HistoricCaseInstanceQuery HistoricCaseInstanceQueryImpl.terminated()
           
 



Copyright © 2016 camunda services GmbH. All rights reserved.