Package org.efs.openreports.ReportConstants

Examples of org.efs.openreports.ReportConstants.ExportType


    int exportTypeCode =
      Integer.parseInt(
        (String) ActionContext.getContext().getSession().get(ORStatics.EXPORT_TYPE));
   
    ExportType exportType = ExportType.findByCode(exportTypeCode);

    Map<String, Object> reportParameters = getReportParameterMap(user, report, exportType);
    Map imagesMap = getImagesMap();

    HttpServletRequest request = ServletActionContext.getRequest();
    HttpServletResponse response = ServletActionContext.getResponse();

    // set headers to disable caching   
    response.setHeader("Pragma", "public");
    response.setHeader("Cache-Control", "max-age=0");

    ReportLog reportLog = new ReportLog(user, report, new Date());
        reportLog.setExportType(exportType.getCode());
   
    JRVirtualizer virtualizer = null;

    try
    {
View Full Code Here

TOP

Related Classes of org.efs.openreports.ReportConstants.ExportType

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.