org.apache.http
Interface RequestLine

All Known Implementing Classes:
BasicRequestLine

public interface RequestLine

The first line of an HttpRequest. It contains the method, URI, and HTTP version of the request. For details, see RFC 2616.

Since:
4.0
Version:
$Revision: 496070 $
Author:
Oleg Kalnichevski

Method Summary
 HttpVersion getHttpVersion()
           
 java.lang.String getMethod()
           
 java.lang.String getUri()
           
 

Method Detail

getMethod

public java.lang.String getMethod()

getHttpVersion

public HttpVersion getHttpVersion()

getUri

public java.lang.String getUri()


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