java.net.http.HttpResponse Maven / Gradle / Ivy
package java.net.http;
/**
* For the Java 8 compatibility when compiled with JDK 11+.
*
* @author L.cm
*/
public interface HttpResponse {
T body();
HttpHeaders headers();
int statusCode();
interface BodyHandler {
}
class BodyHandlers {
public static BodyHandler ofString() {
return null;
}
}
}