@NotThreadSafe public class HttpOptions extends HttpRequestBase
The HTTP OPTIONS method is defined in section 9.2 of RFC2616:
The OPTIONS method represents a request for information about the communication options available on the request/response chain identified by the Request-URI. This method allows the client to determine the options and/or requirements associated with a resource, or the capabilities of a server, without implying a resource action or initiating a resource retrieval.
| Modifier and Type | Field and Description |
|---|---|
static String |
METHOD_NAME |
| Constructor and Description |
|---|
HttpOptions() |
HttpOptions(String uri) |
HttpOptions(URI uri) |
| Modifier and Type | Method and Description |
|---|---|
Set<String> |
getAllowedMethods(org.apache.hc.core5.http.HttpResponse response) |
String |
getMethod()
Returns the HTTP method this request uses, such as
GET,
PUT, POST, or other. |
getConfig, getProtocolVersion, getRequestLine, getURI, releaseConnection, setConfig, setProtocolVersion, setURI, started, toStringabort, completed, isAborted, reset, setCancellableaddHeader, getEntity, setEntity, setHeaderaddHeader, clear, containsHeader, containsHeaders, getAllHeaders, getCondensedHeader, getFirstHeader, getHeaders, getLastHeader, headerIterator, headerIterator, removeHeader, removeHeaders, setHeader, setHeadersclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitabort, isAbortedpublic static final String METHOD_NAME
public HttpOptions()
public HttpOptions(URI uri)
public HttpOptions(String uri)
IllegalArgumentException - if the uri is invalid.public String getMethod()
HttpUriRequestGET,
PUT, POST, or other.getMethod in interface HttpUriRequestgetMethod in class HttpRequestBaseCopyright © 1999–2016 The Apache Software Foundation. All rights reserved.