org.mapfish.print.config.ConfigurationObject 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.config;
import java.util.List;
/**
* A flag interface for a configuration object. This to allow spring to find them as plugins.
*
*/
public interface ConfigurationObject {
/**
* validate that the configuration was correct.
*
* @param validationErrors a list to add any detected errors to.
* @param configuration the containing configuration
*/
void validate(List validationErrors, Configuration configuration);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy