Uses of Class
org.apache.camel.component.http.AuthMethod

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

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

Methods in org.apache.camel.component.http that return AuthMethod
 AuthMethod HttpConfiguration.getAuthMethod()
           
 AuthMethod HttpConfiguration.getProxyAuthMethod()
           
static AuthMethod AuthMethod.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AuthMethod[] AuthMethod.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.camel.component.http with parameters of type AuthMethod
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 HttpConfiguration.setAuthMethod(AuthMethod authMethod)
           
 void HttpConfiguration.setProxyAuthMethod(AuthMethod proxyAuthMethod)
           
 

Method parameters in org.apache.camel.component.http with type arguments of type AuthMethod
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
 



Apache Camel