public interface HttpResponseInterceptor
Interceptors can also manipulate content entities enclosed with messages. Usually this is accomplished by using the 'Decorator' pattern where a wrapper entity class is used to decorate the original entity.
Protocol interceptors must be implemented as thread-safe. Similarly to servlets, protocol interceptors should not use instance variables unless access to those variables is synchronized.
Modifier and Type | Method and Description |
---|---|
void |
process(HttpResponse response,
HttpContext context)
Processes a response.
|
void process(HttpResponse response, HttpContext context) throws HttpException, IOException
response
- the response to postprocesscontext
- the context for the requestHttpException
- in case of an HTTP protocol violationIOException
- in case of an I/O errorCopyright © 2005–2022 The Apache Software Foundation. All rights reserved.