Package | Description |
---|---|
org.apache.camel.component.http |
Defines the HTTP Component
|
Modifier and Type | Class and Description |
---|---|
class |
BasicAuthenticationHttpClientConfigurer |
class |
CompositeHttpConfigurer |
class |
ProxyHttpClientConfigurer
Strategy for configuring the HttpClient with a proxy
|
Modifier and Type | Field and Description |
---|---|
protected HttpClientConfigurer |
HttpComponent.httpClientConfigurer |
Modifier and Type | Method and Description |
---|---|
protected HttpClientConfigurer |
HttpComponent.createHttpClientConfigurer(Map<String,Object> parameters,
boolean secure)
Creates the HttpClientConfigurer based on the given parameters
|
HttpClientConfigurer |
HttpComponent.getHttpClientConfigurer() |
HttpClientConfigurer |
HttpEndpoint.getHttpClientConfigurer() |
Modifier and Type | Method and Description |
---|---|
void |
CompositeHttpConfigurer.addConfigurer(HttpClientConfigurer configurer) |
static CompositeHttpConfigurer |
CompositeHttpConfigurer.combineConfigurers(HttpClientConfigurer oldConfigurer,
HttpClientConfigurer newConfigurer) |
void |
CompositeHttpConfigurer.removeConfigurer(HttpClientConfigurer configurer) |
void |
HttpComponent.setHttpClientConfigurer(HttpClientConfigurer httpClientConfigurer)
To use the custom HttpClientConfigurer to perform configuration of the HttpClient that will be used.
|
void |
HttpEndpoint.setHttpClientConfigurer(HttpClientConfigurer httpClientConfigurer)
Register a custom configuration strategy for new
HttpClient instances
created by producers or consumers such as to configure authentication mechanisms etc |
Constructor and Description |
---|
HttpEndpoint(String endPointURI,
HttpComponent component,
org.apache.http.impl.client.HttpClientBuilder clientBuilder,
org.apache.http.conn.HttpClientConnectionManager clientConnectionManager,
HttpClientConfigurer clientConfigurer) |
HttpEndpoint(String endPointURI,
HttpComponent component,
URI httpURI,
org.apache.http.impl.client.HttpClientBuilder clientBuilder,
org.apache.http.conn.HttpClientConnectionManager clientConnectionManager,
HttpClientConfigurer clientConfigurer) |
Apache Camel