public interface HttpClientFactory
| Modifier and Type | Method and Description |
|---|---|
org.apache.http.client.fluent.Request |
delete(String partialUrl)
Create a DELETE request using the base hostname and port defined in the factory configuration.
|
org.apache.http.client.fluent.Request |
get(String partialUrl)
Create a GET request using the base hostname and port defined in the factory configuration.
|
org.apache.http.client.fluent.Executor |
getExecutor()
Get the configured Executor object from this factory.
|
org.apache.http.client.fluent.Request |
options(String partialUrl)
Create a OPTIONS request using the base hostname and port defined in the factory configuration.
|
org.apache.http.client.fluent.Request |
post(String partialUrl)
Create a POST request using the base hostname and port defined in the factory configuration.
|
org.apache.http.client.fluent.Request |
put(String partialUrl)
Create a PUT request using the base hostname and port defined in the factory configuration.
|
org.apache.http.client.fluent.Executor getExecutor()
org.apache.http.client.fluent.Request get(String partialUrl)
partialUrl - the portion of the URL after the port (and slash)org.apache.http.client.fluent.Request put(String partialUrl)
partialUrl - the portion of the URL after the port (and slash)org.apache.http.client.fluent.Request post(String partialUrl)
partialUrl - the portion of the URL after the port (and slash)org.apache.http.client.fluent.Request delete(String partialUrl)
partialUrl - the portion of the URL after the port (and slash)org.apache.http.client.fluent.Request options(String partialUrl)
partialUrl - the portion of the URL after the port (and slash)Copyright © 2013–2020 Adobe. All rights reserved.