Uses of Interface
org.apache.http.HttpResponseInterceptor

Packages that use HttpResponseInterceptor
org.apache.http.protocol HTTP protocol execution framework. 
 

Uses of HttpResponseInterceptor in org.apache.http.protocol
 

Subinterfaces of HttpResponseInterceptor in org.apache.http.protocol
 interface HttpProcessor
          HTTP protocol processor is a collection of protocol interceptors that implements the 'Chain of Responsibility' pattern, where each individual protocol interceptor is expected to work on a particular aspect of the HTTP protocol the interceptor is responsible for.
 

Classes in org.apache.http.protocol that implement HttpResponseInterceptor
 class BasicHttpProcessor
          Default implementation of HttpProcessor.
 class ResponseConnControl
          ResponseConnControl is responsible for adding Connection header to the outgoing responses, which is essential for managing persistence of HTTP/1.0 connections.
 class ResponseContent
          ResponseContent is the most important interceptor for outgoing responses.
 class ResponseDate
          ResponseDate is responsible for adding Date header to the outgoing responses.
 class ResponseServer
          ResponseServer is responsible for adding Server header.
 

Methods in org.apache.http.protocol that return HttpResponseInterceptor
 HttpResponseInterceptor BasicHttpProcessor.getResponseInterceptor(int index)
           
 HttpResponseInterceptor HttpResponseInterceptorList.getResponseInterceptor(int index)
          Obtains a response interceptor from this list.
 

Methods in org.apache.http.protocol with parameters of type HttpResponseInterceptor
 void BasicHttpProcessor.addInterceptor(HttpResponseInterceptor interceptor)
          Same as addResponseInterceptor.
 void BasicHttpProcessor.addInterceptor(HttpResponseInterceptor interceptor, int index)
           
 void BasicHttpProcessor.addResponseInterceptor(HttpResponseInterceptor itcp)
           
 void HttpResponseInterceptorList.addResponseInterceptor(HttpResponseInterceptor interceptor)
          Appends a response interceptor to this list.
 void BasicHttpProcessor.addResponseInterceptor(HttpResponseInterceptor itcp, int index)
           
 void HttpResponseInterceptorList.addResponseInterceptor(HttpResponseInterceptor interceptor, int index)
          Inserts a response interceptor at the specified index.
 



Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.