cn.majingjing.http.client.handler.HttpHandler Maven / Gradle / Ivy
The newest version!
package cn.majingjing.http.client.handler;
import cn.majingjing.http.client.exception.HttpClientException;
import cn.majingjing.http.client.request.HttpRequest;
import cn.majingjing.http.client.response.HttpResponse;
/**
* Http处理类
*
* @author MaMarion
* @date 2020/5/1
*/
public interface HttpHandler {
/**
* 执行http的请求
*
* @param request 请求对象
* @return HttpResponse
* @throws HttpClientException 如果遇到错误抛出此异常
*/
HttpResponse handleRequest(HttpRequest request) throws HttpClientException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy