public interface HistoricBatchQuery extends Query<HistoricBatchQuery,HistoricBatch>
HistoricBatch
instances.Modifier and Type | Method and Description |
---|---|
HistoricBatchQuery |
batchId(String batchId)
Only select historic batch instances for the given batch id.
|
HistoricBatchQuery |
completed(boolean completed)
Only select historic batches which are completed or not.
|
HistoricBatchQuery |
orderByEndTime()
Returns historic batches sorted by end time; must be followed by an invocation of
Query.asc() or Query.desc() . |
HistoricBatchQuery |
orderById()
Returns historic batches sorted by id; must be followed by an invocation of
Query.asc() or Query.desc() . |
HistoricBatchQuery |
orderByStartTime()
Returns historic batches sorted by start time; must be followed by an invocation of
Query.asc() or Query.desc() . |
HistoricBatchQuery |
orderByTenantId()
Returns historic batches sorted by tenant id; must be followed by an invocation of
Query.asc() or Query.desc() . |
HistoricBatchQuery |
tenantIdIn(String... tenantIds)
Only selects historic batches with one of the given tenant ids.
|
HistoricBatchQuery |
type(String type)
Only select historic batches of the given type.
|
HistoricBatchQuery |
withoutTenantId()
Only selects historic batches which have no tenant id.
|
HistoricBatchQuery batchId(String batchId)
HistoricBatchQuery type(String type)
HistoricBatchQuery completed(boolean completed)
HistoricBatchQuery tenantIdIn(String... tenantIds)
HistoricBatchQuery withoutTenantId()
HistoricBatchQuery orderById()
Query.asc()
or Query.desc()
.HistoricBatchQuery orderByStartTime()
Query.asc()
or Query.desc()
.HistoricBatchQuery orderByEndTime()
Query.asc()
or Query.desc()
.HistoricBatchQuery orderByTenantId()
Query.asc()
or Query.desc()
.Copyright © 2022. All rights reserved.