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

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;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy