Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package org.mapfish.print.map.geotools;
import org.geotools.styling.Style;
import org.mapfish.print.http.MfClientHttpRequestFactory;
/**
* A strategy for loading style objects.
*
* @param the type source that the style applies to
*/
public interface StyleSupplier {
/**
* Load the style.
*
* @param requestFactory the factory to use for making http requests
* @param featureSource the source the style applies to
*/
Style load(MfClientHttpRequestFactory requestFactory, Source featureSource);
}