
com.despegar.http.client.WithoutBodyMethod Maven / Gradle / Ivy
package com.despegar.http.client;
import java.io.IOException;
import java.net.HttpURLConnection;
public class WithoutBodyMethod extends HttpMethod {
public WithoutBodyMethod(String url, String name) {
super(url, name, false);
}
@Override
protected void writeBody(HttpURLConnection connection) throws IOException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy