com.despegar.http.client.PostMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-java-native-client Show documentation
Show all versions of http-java-native-client Show documentation
HTTP Java client without dependencies
package com.despegar.http.client;
public class PostMethod extends WithBodyMethod {
public PostMethod(String url, String body, boolean followRedirects) {
super(url, "POST", body, followRedirects);
}
}