Package org.saiku.web.svg

Examples of org.saiku.web.svg.PdfReport.pdf()


        cs = olapQueryService.execute(queryName, format);
      } else {
        cs = olapQueryService.execute(queryName);
      }

      byte[] doc = pdf.pdf(cs, svg);
      return Response.ok(doc).type("application/pdf").header(
          "content-disposition",
          "attachment; filename = export.pdf").header(
          "content-length", doc.length).build();
    } catch (Exception e) {
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.