org.camunda.bpm.engine.batch
Interface BatchQuery

All Superinterfaces:
Query<BatchQuery,Batch>
All Known Implementing Classes:
BatchQueryImpl

public interface BatchQuery
extends Query<BatchQuery,Batch>

Query for Batch instances.


Method Summary
 BatchQuery batchId(String batchId)
          Only select batch instances for the given batch id.
 BatchQuery orderById()
          Returns batches sorted by id; must be followed by an invocation of Query.asc() or Query.desc().
 BatchQuery type(String type)
          Only select batches of the given type.
 
Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult
 

Method Detail

batchId

BatchQuery batchId(String batchId)
Only select batch instances for the given batch id.


type

BatchQuery type(String type)
Only select batches of the given type.


orderById

BatchQuery orderById()
Returns batches sorted by id; must be followed by an invocation of Query.asc() or Query.desc().



Copyright © 2016 camunda services GmbH. All rights reserved.