Package org.openmeetings.app.remote

Examples of org.openmeetings.app.remote.UserService


  }
 
  public void testUsers(){
   
    MainService mService = new MainService();
    UserService uService = new UserService();
    Sessiondata sessionData = mService.getsessiondata();
   
    Users us = (Users) mService.loginUser(sessionData.getSession_id(), "swagner", "test",false,null,-1L);
   
    SearchResult users = uService.getUserList(sessionData.getSession_id(), 0, 100, "firstname", false);
   
    log.error("Number of Users 1: "+users.getResult().size());
    log.error("Number of Users 2: "+users.getRecords());
   
    Users users2 = (Users) users.getResult().get(5);
View Full Code Here

TOP

Related Classes of org.openmeetings.app.remote.UserService

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.