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

com.despegar.http.client.WithoutBodyMethod Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package com.despegar.http.client;

import java.io.IOException;
import java.net.HttpURLConnection;

public class WithoutBodyMethod extends HttpMethod {

	public WithoutBodyMethod(String url, String name, boolean followRedirects) {
		super(url, name, false, followRedirects);
	}

    @Override
    protected void writeBody(HttpURLConnection connection) throws IOException {
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy