Package org.apache.stratos.tenant.activity.beans

Examples of org.apache.stratos.tenant.activity.beans.PaginatedTenantDataBean


    }

    public PaginatedTenantDataBean retrievePaginatedActiveTenants(int pageNumber) throws Exception {
        List<TenantDataBean> tenantList = getAllActiveTenantList();
        // Pagination
        PaginatedTenantDataBean paginatedTenantInfoBean = new PaginatedTenantDataBean();
        DataPaginator.doPaging(pageNumber, tenantList, paginatedTenantInfoBean);
        return paginatedTenantInfoBean;
    }
View Full Code Here

TOP

Related Classes of org.apache.stratos.tenant.activity.beans.PaginatedTenantDataBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.