Package org.apache.openmeetings.data.beans.basic

Examples of org.apache.openmeetings.data.beans.basic.RoomSearchResult


        rooms_id);
  }

  public RoomSearchResult getRooms(String SID, int start, int max,
      String orderby, boolean asc) throws AxisFault {
    return new RoomSearchResult(getBean(RoomWebService.class).getRooms(SID, start, max, orderby,
        asc));
  }
View Full Code Here


        asc));
  }

  public RoomSearchResult getRoomsWithCurrentUsers(String SID, int start,
      int max, String orderby, boolean asc) throws AxisFault {
    return new RoomSearchResult(getBean(RoomWebService.class).getRoomsWithCurrentUsers(SID, start,
        max, orderby, asc));
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.data.beans.basic.RoomSearchResult

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.