Uses of Interface
org.apache.http.HttpResponse

Packages that use HttpResponse
org.apache.http The core interfaces and classes of the HTTP components. 
org.apache.http.impl Default implementations for interfaces in org.apache.http
org.apache.http.message A selection of HTTP message implementations. 
org.apache.http.protocol HTTP protocol execution framework. 
 

Uses of HttpResponse in org.apache.http
 

Methods in org.apache.http that return HttpResponse
 HttpResponse HttpResponseFactory.newHttpResponse(HttpVersion ver, int status)
           
 HttpResponse HttpResponseFactory.newHttpResponse(StatusLine statusline)
           
 HttpResponse HttpClientConnection.receiveResponseHeader(HttpParams params)
          Receives the request line and headers of the next response available from this connection.
 

Methods in org.apache.http with parameters of type HttpResponse
 boolean ConnectionReuseStrategy.keepAlive(HttpResponse response)
          Tells if the connection used to receive a response should be closed or kept open.
 void HttpResponseInterceptor.process(HttpResponse response, HttpContext context)
           
 void HttpClientConnection.receiveResponseEntity(HttpResponse response)
          Receives the next response entity available from this connection and attaches it to an existing HttpResponse object.
 void HttpServerConnection.sendResponseEntity(HttpResponse response)
          Sends the response entity of a response over this connection.
 void HttpServerConnection.sendResponseHeader(HttpResponse response)
          Sends the response line and headers of a response over this connection.
 

Uses of HttpResponse in org.apache.http.impl
 

Methods in org.apache.http.impl that return HttpResponse
 HttpResponse DefaultHttpResponseFactory.newHttpResponse(HttpVersion ver, int status)
           
 HttpResponse DefaultHttpResponseFactory.newHttpResponse(StatusLine statusline)
           
protected  HttpResponse DefaultHttpClientConnection.readResponseStatusLine(HttpParams params)
           
 HttpResponse DefaultHttpClientConnection.receiveResponseHeader(HttpParams params)
           
 

Methods in org.apache.http.impl with parameters of type HttpResponse
 boolean DefaultConnectionReuseStrategy.keepAlive(HttpResponse response)
           
protected  void DefaultHttpClientConnection.readResponseHeaders(HttpResponse response)
           
 void DefaultHttpClientConnection.receiveResponseEntity(HttpResponse response)
           
 void DefaultHttpServerConnection.sendResponseEntity(HttpResponse response)
           
 void DefaultHttpServerConnection.sendResponseHeader(HttpResponse response)
           
protected  void DefaultHttpServerConnection.sendResponseHeaders(HttpResponse response)
           
protected  void DefaultHttpServerConnection.sendResponseStatusLine(HttpResponse response)
           
 

Uses of HttpResponse in org.apache.http.message
 

Classes in org.apache.http.message that implement HttpResponse
 class BasicHttpResponse
          Basic implementation of an HTTP response that can be modified.
 

Uses of HttpResponse in org.apache.http.protocol
 

Methods in org.apache.http.protocol that return HttpResponse
protected  HttpResponse HttpRequestExecutor.doReceiveResponse(HttpRequest request, HttpClientConnection conn, HttpContext context)
          Wait for and receive a response.
protected  HttpResponse HttpRequestExecutor.doSendRequest(HttpRequest request, HttpClientConnection conn, HttpContext context)
          Send a request over a connection.
 HttpResponse HttpRequestExecutor.execute(HttpRequest request, HttpClientConnection conn)
          Synchronously send a request and obtain the response.
 

Methods in org.apache.http.protocol with parameters of type HttpResponse
protected  boolean HttpRequestExecutor.canResponseHaveBody(HttpRequest request, HttpResponse response)
          Decide whether a response comes with an entity.
protected  void HttpRequestExecutor.doFinishResponse(HttpResponse response, HttpContext context)
          Finish a response.
protected  void HttpService.doService(HttpRequest request, HttpResponse response)
           
protected  void HttpService.handleException(HttpException ex, HttpResponse response)
           
protected  void AbstractHttpProcessor.postprocessResponse(HttpResponse response, HttpContext context)
           
 void ResponseConnControl.process(HttpResponse response, HttpContext context)
           
 void ResponseServer.process(HttpResponse response, HttpContext context)
           
 void ResponseContent.process(HttpResponse response, HttpContext context)
           
 void ResponseDate.process(HttpResponse response, HttpContext context)
           
 



Copyright 2005-2005-2006 Apache Software Foundation. All Rights Reserved.