All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstreetmap.atlas.streaming.resource.http.PutResource Maven / Gradle / Ivy

There is a newer version: 7.0.8
Show newest version
package org.openstreetmap.atlas.streaming.resource.http;

import java.net.URI;

import org.apache.http.client.methods.HttpPut;

/**
 * Same usage as {@link PostResource}
 *
 * @author cuthbertm
 */
public class PutResource extends PostResource
{
    public PutResource(final String uri)
    {
        this(URI.create(uri));
    }

    public PutResource(final URI uri)
    {
        super(uri);
        setRequest(new HttpPut(uri));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy