use of org.apache.http.HttpResponseInterceptor in project platform_external_apache-http by android.
the class BasicHttpProcessor method process.
// non-Javadoc, see interface HttpResponseInterceptor (via HttpProcessor)
public void process(final HttpResponse response, final HttpContext context) throws IOException, HttpException {
if (this.responseInterceptors != null) {
for (int i = 0; i < this.responseInterceptors.size(); i++) {
HttpResponseInterceptor interceptor = (HttpResponseInterceptor) this.responseInterceptors.get(i);
interceptor.process(response, context);
}
}
}
Aggregations