public interface PaginationAPIIf
Modifier and Type | Method and Description |
---|---|
TabularReport |
userAPIgetPage(java.lang.String reportName,
ReportContext reportContext,
Query query,
SortCriteria[] sortCriteria,
int startIndex,
int endIndex) |
int |
userAPIgetRowCount(java.lang.String reportName,
ReportContext reportContext,
Query query,
SortCriteria sortCriteria) |
TabularReportMetadata |
userAPIgetTabularReportMetadata(java.lang.String reportName,
ReportContext reportContext) |
TabularReport userAPIgetPage(java.lang.String reportName, ReportContext reportContext, Query query, SortCriteria[] sortCriteria, int startIndex, int endIndex) throws java.lang.Exception
reportName
- : Name of the report. This is a mandatory parameter.reportContext
- : The report context.query
- : The query.sortCriteria
- : The sort criteria.startIndex
- : The start index.endIndex
- : The end index.java.lang.Exception
int userAPIgetRowCount(java.lang.String reportName, ReportContext reportContext, Query query, SortCriteria sortCriteria) throws java.lang.Exception
reportName
- : Name of the report. This is a mandatory parameter.reportContext
- : Report context. For possible values, see example.query
- : The querysortCriteria
- : The sort criteria. For possible values, see example.java.lang.Exception
TabularReportMetadata userAPIgetTabularReportMetadata(java.lang.String reportName, ReportContext reportContext) throws java.lang.Exception
reportName
- : Name of the report. This is a mandatory parameter.reportContext
- : Report context. For possible values, see example.java.lang.Exception