com.github.davidmoten.grumpy.wms.CapabilitiesProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grumpy-ogc Show documentation
Show all versions of grumpy-ogc Show documentation
OGC tools including WMS server
package com.github.davidmoten.grumpy.wms;
import javax.servlet.http.HttpServletRequest;
/**
* Provides the response to the WMS GetCapabilities request.
*/
public interface CapabilitiesProvider {
String getCapabilities(HttpServletRequest request);
}