Package org.apache.openmeetings.db.dto.user

Examples of org.apache.openmeetings.db.dto.user.UserSearchResult


        organisation_id, insertedby);
  }

  public UserSearchResult getUsersByOrganisation(String SID, long organisation_id, int start, int max, String orderby,
      boolean asc) throws AxisFault {
    return new UserSearchResult(getBean(UserWebService.class)
        .getUsersByOrganisation(SID, organisation_id, start, max, orderby, asc));
  }
View Full Code Here


        }
      } else {
        log.error("Need Administration Account");
        result.setErrorId(-26L);
      }
      return new UserSearchResult(result);
    } catch (Exception err) {
      log.error("getUsersByOrganisation", err);
    }
    return null;
  }
View Full Code Here

        organisation_id, insertedby);
  }

  public UserSearchResult getUsersByOrganisation(String SID, long organisation_id, int start, int max, String orderby,
      boolean asc) throws AxisFault {
    return new UserSearchResult(getBean(UserWebService.class)
        .getUsersByOrganisation(SID, organisation_id, start, max, orderby, asc));
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.db.dto.user.UserSearchResult

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.