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

com.daioware.net.http.request.HttpDeleteRequest Maven / Gradle / Ivy

package com.daioware.net.http.request;

import java.net.MalformedURLException;
import java.net.URL;

public class HttpDeleteRequest extends HttpGetRequest{

	public HttpDeleteRequest(String url,String encoding) throws MalformedURLException {
		this(new URL(url),encoding);
	}

	public HttpDeleteRequest(URL url, String encoding) {
		super(url, encoding);
	}

	public HttpDeleteRequest(String url) throws MalformedURLException {
		this(new URL(url));
	}

	public HttpDeleteRequest(URL url) throws MalformedURLException {
		super(url);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy