Package org.apache.http.protocol
Interface HttpResponseInterceptorList
- 
- All Known Implementing Classes:
 BasicHttpProcessor
@Deprecated public interface HttpResponseInterceptorListDeprecated.(4.3)Provides access to an ordered list of response interceptors. Lists are expected to be built upfront and used read-only afterwards forprocessing.- Since:
 - 4.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddResponseInterceptor(HttpResponseInterceptor interceptor)Deprecated.Appends a response interceptor to this list.voidaddResponseInterceptor(HttpResponseInterceptor interceptor, int index)Deprecated.Inserts a response interceptor at the specified index.voidclearResponseInterceptors()Deprecated.Removes all response interceptors from this list.HttpResponseInterceptorgetResponseInterceptor(int index)Deprecated.Obtains a response interceptor from this list.intgetResponseInterceptorCount()Deprecated.Obtains the current size of this list.voidremoveResponseInterceptorByClass(java.lang.Class<? extends HttpResponseInterceptor> clazz)Deprecated.Removes all response interceptor of the specified classvoidsetInterceptors(java.util.List<?> list)Deprecated.Sets the response interceptors in this list. 
 - 
 
- 
- 
Method Detail
- 
addResponseInterceptor
void addResponseInterceptor(HttpResponseInterceptor interceptor)
Deprecated.Appends a response interceptor to this list.- Parameters:
 interceptor- the response interceptor to add
 
- 
addResponseInterceptor
void addResponseInterceptor(HttpResponseInterceptor interceptor, int index)
Deprecated.Inserts a response interceptor at the specified index.- Parameters:
 interceptor- the response interceptor to addindex- the index to insert the interceptor at
 
- 
getResponseInterceptorCount
int getResponseInterceptorCount()
Deprecated.Obtains the current size of this list.- Returns:
 - the number of response interceptors in this list
 
 
- 
getResponseInterceptor
HttpResponseInterceptor getResponseInterceptor(int index)
Deprecated.Obtains a response interceptor from this list.- Parameters:
 index- the index of the interceptor to obtain, 0 for first- Returns:
 - the interceptor at the given index, or
          
nullif the index is out of range 
 
- 
clearResponseInterceptors
void clearResponseInterceptors()
Deprecated.Removes all response interceptors from this list. 
- 
removeResponseInterceptorByClass
void removeResponseInterceptorByClass(java.lang.Class<? extends HttpResponseInterceptor> clazz)
Deprecated.Removes all response interceptor of the specified class- Parameters:
 clazz- the class of the instances to be removed.
 
- 
setInterceptors
void setInterceptors(java.util.List<?> list)
Deprecated.Sets the response interceptors in this list. This list will be cleared and re-initialized to contain all response interceptors from the argument list. If the argument list includes elements that are not response interceptors, the behavior is implementation dependent.- Parameters:
 list- the list of response interceptors
 
 - 
 
 -