Package org.efs.openreports.services.info

Examples of org.efs.openreports.services.info.UserInfo


    return reportInfo;
  }
 
  public static UserInfo convertToUserInfo(ReportUser reportUser)
  {
    UserInfo userInfo = new UserInfo();
    userInfo.setId(reportUser.getId());
    userInfo.setName(reportUser.getName());
    userInfo.setPassword(reportUser.getPassword());
    userInfo.setEmailAddress(reportUser.getEmail());
    userInfo.setExternalId(reportUser.getExternalId());
   
    return userInfo;
  }
View Full Code Here

TOP

Related Classes of org.efs.openreports.services.info.UserInfo

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.