Package org.apache.http
Interface RequestLine
-
- All Known Implementing Classes:
BasicRequestLine
public interface RequestLine
The Request-Line begins with a method token, followed by the Request-URI and the protocol version, and ending with CRLF. The elements are separated by SP characters. No CR or LF is allowed except in the final CRLF sequence.Request-Line = Method SP Request-URI SP HTTP-Version CRLF
- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getMethod()
ProtocolVersion
getProtocolVersion()
java.lang.String
getUri()
-
-
-
Method Detail
-
getMethod
java.lang.String getMethod()
-
getProtocolVersion
ProtocolVersion getProtocolVersion()
-
getUri
java.lang.String getUri()
-
-