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

com.turbomanage.httpclient.HttpDelete Maven / Gradle / Ivy

package com.turbomanage.httpclient;

/**
 * An HTTP DELETE request.
 * 
 * @author David M. Chandler
 */
public class HttpDelete extends HttpRequest {

    /**
     * Constructs an HTTP DELETE request.
     * 
     * @param path Partial URL
     * @param params Name-value pairs to be appended to the URL
     */
    public HttpDelete(String path, ParameterMap params) {
        super(path, params);
        this.httpMethod = HttpMethod.DELETE;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy