org.yelong.http.response.HttpResponseInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yelong-http Show documentation
Show all versions of yelong-http Show documentation
简单封装java对http的请求,实现便捷的发送http请求(可以发送携带文件的请求)
The newest version!
/**
*
*/
package org.yelong.http.response;
import java.io.IOException;
import org.yelong.http.exception.HttpException;
/**
* 响应拦截器
*
* @since 1.0
*/
public interface HttpResponseInterceptor {
/**
* 在请求执行后执行
*
* @param response 响应结果
*/
void process(HttpResponse response) throws HttpException, IOException;
}