Methods Summary |
---|
public void | addRequestInterceptor(org.apache.http.HttpRequestInterceptor itcp)Appends a request interceptor to this list.
|
public void | addRequestInterceptor(org.apache.http.HttpRequestInterceptor itcp, int index)Inserts a request interceptor at the specified index.
|
public void | clearRequestInterceptors()Removes all request interceptors from this list.
|
public org.apache.http.HttpRequestInterceptor | getRequestInterceptor(int index)Obtains a request interceptor from this list.
|
public int | getRequestInterceptorCount()Obtains the current size of this list.
|
public void | removeRequestInterceptorByClass(java.lang.Class clazz)Removes all request interceptor of the specified class
|
public void | setInterceptors(java.util.List itcps)Sets the request interceptors in this list.
This list will be cleared and re-initialized to contain
all request interceptors from the argument list.
If the argument list includes elements that are not request
interceptors, the behavior is implementation dependent.
|