Uses of Interface
org.apache.http.StatusLine

Packages that use StatusLine
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. 
 

Uses of StatusLine in org.apache.http
 

Methods in org.apache.http that return StatusLine
 StatusLine HttpResponse.getStatusLine()
          Obtains the status line of this response.
 

Methods in org.apache.http with parameters of type StatusLine
 void HttpResponse.setStatusLine(StatusLine statusline)
          Sets the status line of this response.
 HttpResponse HttpResponseFactory.newHttpResponse(StatusLine statusline, HttpContext context)
          Creates a new response from a status line.
 

Uses of StatusLine in org.apache.http.impl
 

Methods in org.apache.http.impl with parameters of type StatusLine
 HttpResponse DefaultHttpResponseFactory.newHttpResponse(StatusLine statusline, HttpContext context)
           
 

Uses of StatusLine in org.apache.http.message
 

Classes in org.apache.http.message that implement StatusLine
 class BasicStatusLine
          Represents a status line as returned from a HTTP server.
 

Methods in org.apache.http.message that return StatusLine
static StatusLine BasicStatusLine.parse(CharArrayBuffer buffer, int indexFrom, int indexTo)
          Parses the status line returned from the HTTP server.
static StatusLine BasicStatusLine.parse(java.lang.String s)
           
 StatusLine BasicHttpResponse.getStatusLine()
           
 

Methods in org.apache.http.message with parameters of type StatusLine
static void BasicStatusLine.format(CharArrayBuffer buffer, StatusLine statusline)
           
static java.lang.String BasicStatusLine.format(StatusLine statusline)
           
 void BasicHttpResponse.setStatusLine(StatusLine statusline)
           
 

Constructors in org.apache.http.message with parameters of type StatusLine
BasicHttpResponse(StatusLine statusline, ReasonPhraseCatalog catalog, java.util.Locale locale)
          Creates a new response.
BasicHttpResponse(StatusLine statusline)
          Creates a response from a status line.
 



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