Uses of Interface
org.apache.camel.component.http.HttpClientConfigurer

Packages that use HttpClientConfigurer
org.apache.camel.component.http Defines the HTTP Component 
 

Uses of HttpClientConfigurer in org.apache.camel.component.http
 

Classes in org.apache.camel.component.http that implement HttpClientConfigurer
 class BasicAuthenticationHttpClientConfigurer
           
 class CompositeHttpConfigurer
           
 class NTLMAuthenticationHttpClientConfigurer
           
 

Fields in org.apache.camel.component.http declared as HttpClientConfigurer
protected  HttpClientConfigurer HttpComponent.httpClientConfigurer
           
 

Methods in org.apache.camel.component.http that return HttpClientConfigurer
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()
           
 

Methods in org.apache.camel.component.http that return types with arguments of type HttpClientConfigurer
 List<HttpClientConfigurer> CompositeHttpConfigurer.getConfigurers()
           
 

Methods in org.apache.camel.component.http with parameters of type HttpClientConfigurer
 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
 

Constructors in org.apache.camel.component.http with parameters of type HttpClientConfigurer
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