Uses of Interface
org.flowable.batch.api.BatchQuery
Packages that use BatchQuery
Package
Description
Public API of the Flowable engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 Deployment
s.RuntimeService
: For starting and searching ProcessInstance
s.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 administration and maintenance operations,
which have no relation to the runtime exection 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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of BatchQuery in org.flowable.batch.api
Methods in org.flowable.batch.api that return BatchQueryModifier and TypeMethodDescriptionOnly select batches with the given idOnly select batches which exist for the given type.BatchQuery.batchTypes
(Collection<String> batchTypes) Only select batches which exist for the given types.BatchQuery.completeTimeHigherThan
(Date date) Only select batches where the complete time is higher then the given date.BatchQuery.completeTimeLowerThan
(Date date) Only select batches where the complete time is lower than the given date.BatchQuery.createTimeHigherThan
(Date date) Only select batches where the create time is higher then the given date.BatchQuery.createTimeLowerThan
(Date date) Only select batches where the create time is lower than the given date.BatchQuery.orderByBatchCreateTime()
Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
).BatchQuery.orderByBatchId()
Order by batch id (needs to be followed byQuery.asc()
orQuery.desc()
).BatchQuery.orderByBatchTenantId()
Order by batch create time (needs to be followed byQuery.asc()
orQuery.desc()
).Only select batches which exist for the given search key.BatchQuery.searchKey2
(String searchKey2) Only select batches which exist for the given search key.Only select batches which exist for the given status.Only select batches which exist for the given tenant id.BatchQuery.tenantIdLike
(String tenantIdLike) Only select batches with a tenant id like the given one.BatchQuery.withoutTenantId()
Only select batches that do not have a tenant id.Methods in org.flowable.batch.api with parameters of type BatchQueryModifier and TypeMethodDescriptionlong
BatchService.findBatchCountByQueryCriteria
(BatchQuery batchQuery) BatchService.findBatchesByQueryCriteria
(BatchQuery batchQuery) -
Uses of BatchQuery in org.flowable.batch.service.impl
Classes in org.flowable.batch.service.impl that implement BatchQueryMethods in org.flowable.batch.service.impl that return BatchQueryModifier and TypeMethodDescriptionBatchQueryImpl.batchTypes
(Collection<String> batchTypes) BatchQueryImpl.completeTimeHigherThan
(Date date) BatchQueryImpl.completeTimeLowerThan
(Date date) BatchQueryImpl.createTimeHigherThan
(Date date) BatchQueryImpl.createTimeLowerThan
(Date date) BatchQueryImpl.orderByBatchCreateTime()
BatchQueryImpl.orderByBatchId()
BatchQueryImpl.orderByBatchTenantId()
BatchQueryImpl.searchKey2
(String searchKey) BatchQueryImpl.tenantIdLike
(String tenantIdLike) BatchQueryImpl.withoutTenantId()
Methods in org.flowable.batch.service.impl with parameters of type BatchQueryModifier and TypeMethodDescriptionlong
BatchServiceImpl.findBatchCountByQueryCriteria
(BatchQuery batchQuery) BatchServiceImpl.findBatchesByQueryCriteria
(BatchQuery batchQuery) -
Uses of BatchQuery in org.flowable.cmmn.api
Methods in org.flowable.cmmn.api that return BatchQueryModifier and TypeMethodDescriptionCmmnHistoryCleaningManager.createBatchCleaningQuery()
CmmnManagementService.createBatchQuery()
Returns a new BatchQuery implementation, that can be used to dynamically query the batches. -
Uses of BatchQuery in org.flowable.cmmn.engine.impl
Methods in org.flowable.cmmn.engine.impl that return BatchQueryModifier and TypeMethodDescriptionDefaultCmmnHistoryCleaningManager.createBatchCleaningQuery()
CmmnManagementServiceImpl.createBatchQuery()
-
Uses of BatchQuery in org.flowable.engine
Methods in org.flowable.engine that return BatchQueryModifier and TypeMethodDescriptionDefaultHistoryCleaningManager.createBatchCleaningQuery()
HistoryCleaningManager.createBatchCleaningQuery()
ManagementService.createBatchQuery()
Returns a new BatchQuery implementation, that can be used to dynamically query the batches. -
Uses of BatchQuery in org.flowable.engine.impl
Methods in org.flowable.engine.impl that return BatchQuery -
Uses of BatchQuery in org.flowable.rest.service.api
Methods in org.flowable.rest.service.api with parameters of type BatchQueryModifier and TypeMethodDescriptionvoid
BpmnRestApiInterceptor.accessBatchInfoWithQuery
(BatchQuery batchQuery)