public interface

HttpUriRequest

implements HttpRequest
org.apache.http.client.methods.HttpUriRequest
Known Indirect Subclasses

Class Overview

Extended version of the HttpRequest interface that provides convenience methods to access request properties such as request URI and method type.

Summary

Public Methods
abstract void abort()
Aborts execution of the request.
abstract String getMethod()
Returns the HTTP method this request uses, such as GET, PUT, POST, or other.
abstract URI getURI()
Returns the URI this request uses, such as http://example.org/path/to/file.
abstract boolean isAborted()
Tests if the request execution has been aborted.
[Expand]
Inherited Methods
From interface org.apache.http.HttpMessage
From interface org.apache.http.HttpRequest

Public Methods

public abstract void abort ()

Also: HttpClient

Aborts execution of the request.

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

public abstract String getMethod ()

Also: HttpClient

Returns the HTTP method this request uses, such as GET, PUT, POST, or other.

public abstract URI getURI ()

Also: HttpClient

Returns the URI this request uses, such as http://example.org/path/to/file.
Note that the URI may be absolute URI (as above) or may be a relative URI.

Implementations are encouraged to return the URI that was initially requested.

To find the final URI after any redirects have been processed, please see the section entitled HTTP execution context in the HttpClient Tutorial

public abstract boolean isAborted ()

Also: HttpClient

Tests if the request execution has been aborted.

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