static HttpUriRequest |
ClassicHttpRequests.create(java.lang.String method,
java.lang.String uri) |
Deprecated.
Creates a new HttpUriRequest for the given method and String URI.
|
static HttpUriRequest |
ClassicHttpRequests.create(java.lang.String method,
java.net.URI uri) |
Deprecated.
Creates a new HttpUriRequest for the given method and URI.
|
static HttpUriRequest |
ClassicHttpRequests.create(org.apache.hc.core5.http.Method method,
java.lang.String uri) |
Deprecated.
Creates a new HttpUriRequest for the given Method and String URI.
|
static HttpUriRequest |
ClassicHttpRequests.create(org.apache.hc.core5.http.Method method,
java.net.URI uri) |
Deprecated.
Creates a new HttpUriRequest for the given Method and URI.
|
static HttpUriRequest |
ClassicHttpRequests.delete(java.lang.String uri) |
Deprecated.
Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.delete(java.net.URI uri) |
Deprecated.
Constructs a new "DELETE" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.get(java.lang.String uri) |
Deprecated.
Constructs a new "GET" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.get(java.net.URI uri) |
Deprecated.
Constructs a new "GET" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.head(java.lang.String uri) |
Deprecated.
Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.head(java.net.URI uri) |
Deprecated.
Constructs a new "HEAD" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.options(java.lang.String uri) |
Deprecated.
Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.options(java.net.URI uri) |
Deprecated.
Constructs a new "OPTIONS" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.patch(java.lang.String uri) |
Deprecated.
Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.patch(java.net.URI uri) |
Deprecated.
Constructs a new "PATCH" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.post(java.lang.String uri) |
Deprecated.
Constructs a new "POST" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.post(java.net.URI uri) |
Deprecated.
Constructs a new "POST" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.put(java.lang.String uri) |
Deprecated.
Constructs a new "PUT" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.put(java.net.URI uri) |
Deprecated.
Constructs a new "PUT" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.trace(java.lang.String uri) |
Deprecated.
Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
|
static HttpUriRequest |
ClassicHttpRequests.trace(java.net.URI uri) |
Deprecated.
Constructs a new "TRACE" HttpUriRequest initialized with the given URI.
|