org.camunda.bpm.engine.management
Interface TablePageQuery

All Known Implementing Classes:
TablePageQueryImpl

public interface TablePageQuery

Allows programmatic querying of TablePages.

Author:
Joram Barrez

Method Summary
 TablePage listPage(int firstResult, int maxResults)
          Executes the query and returns the TablePage.
 TablePageQuery orderAsc(String column)
          Orders the resulting table page rows by the given column in ascending order.
 TablePageQuery orderDesc(String column)
          Orders the resulting table page rows by the given column in descending order.
 TablePageQuery tableName(String tableName)
          The name of the table of which a page must be fetched.
 

Method Detail

tableName

TablePageQuery tableName(String tableName)
The name of the table of which a page must be fetched.


orderAsc

TablePageQuery orderAsc(String column)
Orders the resulting table page rows by the given column in ascending order.


orderDesc

TablePageQuery orderDesc(String column)
Orders the resulting table page rows by the given column in descending order.


listPage

TablePage listPage(int firstResult,
                   int maxResults)
Executes the query and returns the TablePage.



Copyright © 2017 camunda services GmbH. All rights reserved.