org.openstreetmap.atlas.streaming.resource.http.GetResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atlas Show documentation
Show all versions of atlas Show documentation
"Library to load OSM data into an Atlas format"
package org.openstreetmap.atlas.streaming.resource.http;
import java.net.URI;
import org.apache.http.client.methods.HttpGet;
/**
* Same usage as found in {@link HttpResource}
*
* @author cuthbertm
*/
public class GetResource extends HttpResource
{
public GetResource(final String uri)
{
this(URI.create(uri));
}
public GetResource(final URI uri)
{
super(uri);
setRequest(new HttpGet(uri));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy