org.mapfish.print.MapPrinterFactory 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;
import org.mapfish.print.servlet.NoSuchAppException;
import java.util.Set;
/**
* Interface for a class that creates MapPrinters.
*/
public interface MapPrinterFactory {
/**
* Creates the appropriate map printer.
*
* @param app an identifier that controls which configuration to use.
*/
MapPrinter create(String app) throws NoSuchAppException;
/**
* Return the set of app ids that are available.
*/
Set getAppIds();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy