| java.lang.Object org.apache.http.protocol.BasicHttpProcessor
requestInterceptors | protected List requestInterceptors(Code) | | |
responseInterceptors | protected List responseInterceptors(Code) | | |
clearInterceptors | public void clearInterceptors()(Code) | | Clears both interceptor lists maintained by this processor.
|
clearRequestInterceptors | public void clearRequestInterceptors()(Code) | | |
clearResponseInterceptors | public void clearResponseInterceptors()(Code) | | |
getRequestInterceptorCount | public int getRequestInterceptorCount()(Code) | | |
getResponseInterceptorCount | public int getResponseInterceptorCount()(Code) | | |
removeRequestInterceptorByClass | public void removeRequestInterceptorByClass(Class clazz)(Code) | | |
removeResponseInterceptorByClass | public void removeResponseInterceptorByClass(Class clazz)(Code) | | |
setInterceptors | public void setInterceptors(List list)(Code) | | Sets the interceptor lists.
First, both interceptor lists maintained by this processor
will be cleared.
Subsequently,
elements of the argument list that are request interceptors will be
added to the request interceptor list.
Elements that are response interceptors will be
added to the response interceptor list.
Elements that are both request and response interceptor will be
added to both lists.
Elements that are neither request nor response interceptor
will be ignored.
Parameters: list - the list of request and response interceptorsfrom which to initialize |
|
|