Uses of Interface
org.camunda.bpm.engine.batch.history.HistoricBatchQuery
-
Packages that use HistoricBatchQuery 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.batch.history org.camunda.bpm.engine.history Classes related to theHistoryService
.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.batch.history org.camunda.bpm.engine.impl.cmd.batch.removaltime org.camunda.bpm.engine.impl.history org.camunda.bpm.engine.rest.dto.history.batch -
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuery
HistoryService. createHistoricBatchQuery()
Creates a query to search forHistoricBatch
instances. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.batch.history
Methods in org.camunda.bpm.engine.batch.history that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuery
HistoricBatchQuery. batchId(java.lang.String batchId)
Only select historic batch instances for the given batch id.HistoricBatchQuery
HistoricBatchQuery. completed(boolean completed)
Only select historic batches which are completed or not.HistoricBatchQuery
HistoricBatchQuery. orderByEndTime()
Returns historic batches sorted by end time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery
HistoricBatchQuery. orderById()
Returns historic batches sorted by id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery
HistoricBatchQuery. orderByStartTime()
Returns historic batches sorted by start time; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery
HistoricBatchQuery. orderByTenantId()
Returns historic batches sorted by tenant id; must be followed by an invocation ofQuery.asc()
orQuery.desc()
.HistoricBatchQuery
HistoricBatchQuery. tenantIdIn(java.lang.String... tenantIds)
Only selects historic batches with one of the given tenant ids.HistoricBatchQuery
HistoricBatchQuery. type(java.lang.String type)
Only select historic batches of the given type.HistoricBatchQuery
HistoricBatchQuery. withoutTenantId()
Only selects historic batches which have no tenant id. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.history
Methods in org.camunda.bpm.engine.history with parameters of type HistoricBatchQuery Modifier and Type Method Description SetRemovalTimeToHistoricBatchesBuilder
SetRemovalTimeToHistoricBatchesBuilder. byQuery(HistoricBatchQuery historicBatchQuery)
Selects historic batches by the given query. -
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuery
HistoryServiceImpl. createHistoricBatchQuery()
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.batch.history
Classes in org.camunda.bpm.engine.impl.batch.history that implement HistoricBatchQuery Modifier and Type Class Description class
HistoricBatchQueryImpl
Methods in org.camunda.bpm.engine.impl.batch.history that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuery
HistoricBatchQueryImpl. batchId(java.lang.String batchId)
HistoricBatchQuery
HistoricBatchQueryImpl. completed(boolean completed)
HistoricBatchQuery
HistoricBatchQueryImpl. orderByEndTime()
HistoricBatchQuery
HistoricBatchQueryImpl. orderById()
HistoricBatchQuery
HistoricBatchQueryImpl. orderByStartTime()
HistoricBatchQuery
HistoricBatchQueryImpl. orderByTenantId()
HistoricBatchQuery
HistoricBatchQueryImpl. tenantIdIn(java.lang.String... tenantIds)
HistoricBatchQuery
HistoricBatchQueryImpl. type(java.lang.String type)
HistoricBatchQuery
HistoricBatchQueryImpl. withoutTenantId()
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.cmd.batch.removaltime
Methods in org.camunda.bpm.engine.impl.cmd.batch.removaltime that return HistoricBatchQuery Modifier and Type Method Description protected HistoricBatchQuery
SetRemovalTimeToHistoricBatchesCmd. createHistoricBatchQuery(CommandContext commandContext)
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.impl.history
Fields in org.camunda.bpm.engine.impl.history declared as HistoricBatchQuery Modifier and Type Field Description protected HistoricBatchQuery
SetRemovalTimeToHistoricBatchesBuilderImpl. query
Methods in org.camunda.bpm.engine.impl.history that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuery
SetRemovalTimeToHistoricBatchesBuilderImpl. getQuery()
Methods in org.camunda.bpm.engine.impl.history with parameters of type HistoricBatchQuery Modifier and Type Method Description SetRemovalTimeToHistoricBatchesBuilder
SetRemovalTimeToHistoricBatchesBuilderImpl. byQuery(HistoricBatchQuery query)
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine.rest.dto.history.batch
Methods in org.camunda.bpm.engine.rest.dto.history.batch that return HistoricBatchQuery Modifier and Type Method Description protected HistoricBatchQuery
HistoricBatchQueryDto. createNewQuery(ProcessEngine engine)
Methods in org.camunda.bpm.engine.rest.dto.history.batch with parameters of type HistoricBatchQuery Modifier and Type Method Description protected void
HistoricBatchQueryDto. applyFilters(HistoricBatchQuery query)
protected void
HistoricBatchQueryDto. applySortBy(HistoricBatchQuery query, java.lang.String sortBy, java.util.Map<java.lang.String,java.lang.Object> parameters, ProcessEngine engine)
-