Examples of DeliveredReportInfo


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

    return alertInfo;
  }
 
  public static DeliveredReportInfo convertToDeliveredReportInfo(DeliveredReport report)
  {
    DeliveredReportInfo info = new DeliveredReportInfo();
    info.setReportDescription(report.getReportDescription());
    info.setReportFileName(report.getReportFileName());
    info.setReportName(report.getReportName());
    info.setRunDate(report.getRunDate());
    info.setUserName(report.getUserName());
        info.setDeliveryMethod(report.getDeliveryMethod());
        info.setRequestId(report.getRequestId());
   
    return info;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.