net.lenni0451.commons.httpclient.requests.impl.PutRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of httpclient Show documentation
Show all versions of httpclient Show documentation
A java library with many useful functions and classes
The newest version!
package net.lenni0451.commons.httpclient.requests.impl;
import net.lenni0451.commons.httpclient.constants.RequestMethods;
import net.lenni0451.commons.httpclient.requests.HttpContentRequest;
import java.net.MalformedURLException;
import java.net.URL;
public class PutRequest extends HttpContentRequest {
public PutRequest(final String url) throws MalformedURLException {
super(RequestMethods.PUT, url);
}
public PutRequest(final URL url) {
super(RequestMethods.PUT, url);
}
}