it.geosolutions.geoserver.rest.http.GeoServerRestAuthenticator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geoserver-manager Show documentation
Show all versions of geoserver-manager Show documentation
GeoServer Manager is a library to interact with GeoServer
The scope of this library is to have a simple API, and use as few external
libs as possible.
The newest version!
package it.geosolutions.geoserver.rest.http;
import java.io.IOException;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethod;
public interface GeoServerRestAuthenticator {
void setAuth(HttpClient client, HttpMethod method) throws IOException;
}