Spring for Android

org.springframework.http
Interface HttpRequest

All Superinterfaces:
HttpMessage
All Known Subinterfaces:
ClientHttpRequest
All Known Implementing Classes:
AbstractClientHttpRequest, HttpRequestWrapper

public interface HttpRequest
extends HttpMessage

Represents an HTTP request message, consisting of method and uri.

Since:
1.0
Author:
Arjen Poutsma

Method Summary
 HttpMethod getMethod()
          Return the HTTP method of the request.
 java.net.URI getURI()
          Return the URI of the request.
 
Methods inherited from interface org.springframework.http.HttpMessage
getHeaders
 

Method Detail

getMethod

HttpMethod getMethod()
Return the HTTP method of the request.

Returns:
the HTTP method as an HttpMethod enum value

getURI

java.net.URI getURI()
Return the URI of the request.

Returns:
the URI of the request

Spring for Android