Package | Description |
---|---|
org.apache.camel.component.http |
Defines the HTTP Component
|
Modifier and Type | Class and Description |
---|---|
class |
BasicAuthenticationHttpClientConfigurer |
class |
CompositeHttpConfigurer |
class |
NTLMAuthenticationHttpClientConfigurer |
Modifier and Type | Field and Description |
---|---|
protected HttpClientConfigurer |
HttpComponent.httpClientConfigurer |
Modifier and Type | Method and Description |
---|---|
protected HttpClientConfigurer |
HttpComponent.configureAuth(HttpClientConfigurer configurer,
AuthMethod authMethod,
String username,
String password,
String domain,
String host,
Set<AuthMethod> authMethods)
Configures the authentication method to be used
|
protected HttpClientConfigurer |
HttpComponent.configureProxyAuth(HttpClientConfigurer configurer,
AuthMethod authMethod,
String username,
String password,
String domain,
String host,
Set<AuthMethod> authMethods)
Configures the proxy authentication method to be used
|
protected HttpClientConfigurer |
HttpComponent.createHttpClientConfigurer(Map<String,Object> parameters,
Set<AuthMethod> authMethods)
Creates the HttpClientConfigurer based on the given parameters
|
HttpClientConfigurer |
HttpComponent.getHttpClientConfigurer() |
HttpClientConfigurer |
HttpEndpoint.getHttpClientConfigurer() |
Modifier and Type | Method and Description |
---|---|
List<HttpClientConfigurer> |
CompositeHttpConfigurer.getConfigurers() |
Modifier and Type | Method and Description |
---|---|
void |
CompositeHttpConfigurer.addConfigurer(HttpClientConfigurer configurer) |
static CompositeHttpConfigurer |
CompositeHttpConfigurer.combineConfigurers(HttpClientConfigurer oldConfigurer,
HttpClientConfigurer newConfigurer) |
protected HttpClientConfigurer |
HttpComponent.configureAuth(HttpClientConfigurer configurer,
AuthMethod authMethod,
String username,
String password,
String domain,
String host,
Set<AuthMethod> authMethods)
Configures the authentication method to be used
|
protected HttpClientConfigurer |
HttpComponent.configureProxyAuth(HttpClientConfigurer configurer,
AuthMethod authMethod,
String username,
String password,
String domain,
String host,
Set<AuthMethod> authMethods)
Configures the proxy authentication method to be used
|
void |
CompositeHttpConfigurer.removeConfigurer(HttpClientConfigurer configurer) |
void |
HttpComponent.setHttpClientConfigurer(HttpClientConfigurer httpClientConfigurer) |
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.commons.httpclient.params.HttpClientParams clientParams,
org.apache.commons.httpclient.HttpConnectionManager httpConnectionManager,
HttpClientConfigurer clientConfigurer) |
HttpEndpoint(String endPointURI,
HttpComponent component,
URI httpURI,
org.apache.commons.httpclient.params.HttpClientParams clientParams,
org.apache.commons.httpclient.HttpConnectionManager httpConnectionManager,
HttpClientConfigurer clientConfigurer) |
Apache Camel