Package org.exoplatform.commons.utils

Examples of org.exoplatform.commons.utils.PageList


         String groupId = uiSelectUserForm.getSelectedGroup();
         uiSelectUserForm.setSelectedGroup(groupId);
         OrganizationService service = uiSelectUserForm.getApplicationComponent(OrganizationService.class);
         if (groupId != null && groupId.trim().length() != 0)
         {
            PageList users = uiSelectUserForm.removeDuplicate(service.getUserHandler().findUsersByGroup(groupId));
            uiSelectUserForm.uiIterator_.setPageList(users);
         }
         else
         {
            uiSelectUserForm.uiIterator_.setPageList(service.getUserHandler().findUsers(new Query()));
View Full Code Here

TOP

Related Classes of org.exoplatform.commons.utils.PageList

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.