Package org.mapfish.print.servlet.job.loader

Examples of org.mapfish.print.servlet.job.loader.ReportLoader


            return handler.printJobPending(httpServletResponse, referenceId);
        } else if (metadata.get() instanceof SuccessfulPrintJob) {
            SuccessfulPrintJob successfulPrintJob = (SuccessfulPrintJob) metadata.get();
            URI pdfURI = successfulPrintJob.getURI();

            ReportLoader loader = null;
            for (ReportLoader reportLoader : this.reportLoaders) {
                if (reportLoader.accepts(pdfURI)) {
                    loader = reportLoader;
                    break;
                }
View Full Code Here

TOP

Related Classes of org.mapfish.print.servlet.job.loader.ReportLoader

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.