com.daioware.net.http.request.HttpPutRequest Maven / Gradle / Ivy
package com.daioware.net.http.request;
import java.net.MalformedURLException;
import java.net.URL;
public class HttpPutRequest extends HttpPostRequest{
public HttpPutRequest(String url, String encoding) throws MalformedURLException {
super(url, encoding);
}
public HttpPutRequest(String url) throws MalformedURLException {
super(url);
}
public HttpPutRequest(URL url, String encoding) {
super(url, encoding);
}
public HttpPutRequest(URL url) throws MalformedURLException {
super(url);
}
@Override
public String getMethod() {
return "PUT";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy