* @throws Exception
*/
public AllTenantUsageReport(ServletConfig config, HttpSession session, HttpServletRequest request)
throws Exception {
PaginatedTenantUsageInfo tenantsInfo =
UsageUtil.retrievePaginatedTenantUsages(request, config, session);
tenantUsages = tenantsInfo.getTenantUsages();
int pageNumber = tenantsInfo.getPageNumber();
int numberOfPages = tenantsInfo.getNumberOfPages();
yearMonth = (String) request.getSession().getAttribute("year-month");
}