| org.apache.http.HttpResponseInterceptor
All known Subclasses: org.apache.http.protocol.ResponseDate, org.apache.http.protocol.ResponseContent, org.apache.http.protocol.ResponseServer, org.apache.http.protocol.ResponseConnControl,
HttpResponseInterceptor | public interface HttpResponseInterceptor (Code) | | Processes a response.
Provides the ability to process a response before it is sent
to the client or after it has been received on the client side.
author: Oleg Kalnichevski author: version: $Revision: 496070 $ since: 4.0 |
Method Summary | |
void | process(HttpResponse response, HttpContext context) Processes a response.
On the server side, this step is performed before the response is
sent to the client. |
process | void process(HttpResponse response, HttpContext context) throws HttpException, IOException(Code) | | Processes a response.
On the server side, this step is performed before the response is
sent to the client. On the client side, this step is performed
on incoming messages before the message body is evaluated.
Parameters: response - the response to postprocess Parameters: context - the context for the request throws: IOException - in case of an IO problem throws: HttpException - in case of a protocol or other problem |
|
|