Package org.apache.openmeetings.data.beans.user

Examples of org.apache.openmeetings.data.beans.user.UserDTO


  public UserSearchResult(SearchResult<User> copy) {
    this.objectName = copy.getObjectName();
    this.records = copy.getRecords();
    this.result = new ArrayList<UserDTO>(copy.getResult().size());
    for (User u : copy.getResult()) {
      result.add(new UserDTO(u));
    }
    this.errorId = copy.getErrorId();
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.data.beans.user.UserDTO

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.