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

net.nemerosa.httpclient.ResponseHandler Maven / Gradle / Ivy

package net.nemerosa.httpclient;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ParseException;
import org.apache.http.client.methods.HttpRequestBase;

import java.io.IOException;

@FunctionalInterface
public interface ResponseHandler {

    T handleResponse(HttpRequestBase request, HttpResponse response, HttpEntity entity) throws ParseException, IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy