public interface

HttpRequest

implements HttpMessage
org.apache.http.HttpRequest
Known Indirect Subclasses

Class Overview

A request message from a client to a server includes, within the first line of that message, the method to be applied to the resource, the identifier of the resource, and the protocol version in use.

      Request       = Request-Line
                      *(( general-header
                       | request-header
                       | entity-header ) CRLF)
                      CRLF
                      [ message-body ]
 

Summary

Public Methods
abstract RequestLine getRequestLine()
Returns the request line of this request.
[Expand]
Inherited Methods
From interface org.apache.http.HttpMessage

Public Methods

public abstract RequestLine getRequestLine ()

Returns the request line of this request.

Returns
  • the request line.