org.mapfish.print.servlet.job.PrintJobResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of print-lib Show documentation
Show all versions of print-lib Show documentation
Library for generating PDFs and images from online webmapping services
package org.mapfish.print.servlet.job;
import java.net.URI;
/**
* Print Job Result.
*/
public interface PrintJobResult {
/**
* Get the report URI.
*/
URI getReportURI();
/**
* Get the report mime type.
*/
String getMimeType();
/**
* Get the file extension.
*/
String getFileExtension();
/**
* Get the file name.
*/
String getFileName();
/**
* Get the report URI as String.
*/
String getReportURIString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy