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 aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managingUsers,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.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 -
-
Uses of HistoricBatchQuery in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQueryHistoryService. createHistoricBatchQuery()Creates a query to search forHistoricBatchinstances. -
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 HistoricBatchQueryHistoricBatchQuery. batchId(String batchId)Only select historic batch instances for the given batch id.HistoricBatchQueryHistoricBatchQuery. completed(boolean completed)Only select historic batches which are completed or not.HistoricBatchQueryHistoricBatchQuery. orderByEndTime()Returns historic batches sorted by end time; must be followed by an invocation ofQuery.asc()orQuery.desc().HistoricBatchQueryHistoricBatchQuery. orderById()Returns historic batches sorted by id; must be followed by an invocation ofQuery.asc()orQuery.desc().HistoricBatchQueryHistoricBatchQuery. orderByStartTime()Returns historic batches sorted by start time; must be followed by an invocation ofQuery.asc()orQuery.desc().HistoricBatchQueryHistoricBatchQuery. orderByTenantId()Returns historic batches sorted by tenant id; must be followed by an invocation ofQuery.asc()orQuery.desc().HistoricBatchQueryHistoricBatchQuery. tenantIdIn(String... tenantIds)Only selects historic batches with one of the given tenant ids.HistoricBatchQueryHistoricBatchQuery. type(String type)Only select historic batches of the given type.HistoricBatchQueryHistoricBatchQuery. 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 SetRemovalTimeToHistoricBatchesBuilderSetRemovalTimeToHistoricBatchesBuilder. 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 HistoricBatchQueryHistoryServiceImpl. 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 classHistoricBatchQueryImplMethods in org.camunda.bpm.engine.impl.batch.history that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQueryHistoricBatchQueryImpl. batchId(String batchId)HistoricBatchQueryHistoricBatchQueryImpl. completed(boolean completed)HistoricBatchQueryHistoricBatchQueryImpl. orderByEndTime()HistoricBatchQueryHistoricBatchQueryImpl. orderById()HistoricBatchQueryHistoricBatchQueryImpl. orderByStartTime()HistoricBatchQueryHistoricBatchQueryImpl. orderByTenantId()HistoricBatchQueryHistoricBatchQueryImpl. tenantIdIn(String... tenantIds)HistoricBatchQueryHistoricBatchQueryImpl. type(String type)HistoricBatchQueryHistoricBatchQueryImpl. 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 HistoricBatchQuerySetRemovalTimeToHistoricBatchesCmd. 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 HistoricBatchQuerySetRemovalTimeToHistoricBatchesBuilderImpl. queryMethods in org.camunda.bpm.engine.impl.history that return HistoricBatchQuery Modifier and Type Method Description HistoricBatchQuerySetRemovalTimeToHistoricBatchesBuilderImpl. getQuery()Methods in org.camunda.bpm.engine.impl.history with parameters of type HistoricBatchQuery Modifier and Type Method Description SetRemovalTimeToHistoricBatchesBuilderSetRemovalTimeToHistoricBatchesBuilderImpl. byQuery(HistoricBatchQuery query)
-