FileDocCategorySizeDatePackage
HttpUriRequest.javaAPI DocAndroid 1.5 API2716Wed May 06 22:41:10 BST 2009org.apache.http.client.methods

HttpUriRequest

public interface HttpUriRequest implements HttpRequest
Extended version of the {@link HttpRequest} interface that provides convenience methods to access request properties such as request URI and method type.
author
Oleg Kalnichevski
version
$Revision: 659191 $
since
4.0

Fields Summary
Constructors Summary
Methods Summary
public voidabort()
Aborts execution of the request.

throws
UnsupportedOperationException if the abort operation is not supported / cannot be implemented.

public java.lang.StringgetMethod()
Returns the HTTP method this request uses, such as GET, PUT, POST, or other.

public java.net.URIgetURI()
Returns the URI this request uses, such as http://example.org/path/to/file.

public booleanisAborted()
Tests if the request execution has been aborted.

return
true if the request execution has been aborted, false otherwise.