org.apache.camel.component.http
Class NTLMAuthenticationHttpClientConfigurer

java.lang.Object
  extended by org.apache.camel.component.http.NTLMAuthenticationHttpClientConfigurer
All Implemented Interfaces:
HttpClientConfigurer

public class NTLMAuthenticationHttpClientConfigurer
extends Object
implements HttpClientConfigurer


Constructor Summary
NTLMAuthenticationHttpClientConfigurer(boolean proxy, String user, String pwd, String domain, String host)
           
 
Method Summary
 void configureHttpClient(org.apache.commons.httpclient.HttpClient client)
          Configure the HttpClient such as setting the authentication or proxying details
 String getDomain()
           
 String getHost()
           
 String getPassword()
           
 String getUsername()
           
 boolean isProxy()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NTLMAuthenticationHttpClientConfigurer

public NTLMAuthenticationHttpClientConfigurer(boolean proxy,
                                              String user,
                                              String pwd,
                                              String domain,
                                              String host)
Method Detail

configureHttpClient

public void configureHttpClient(org.apache.commons.httpclient.HttpClient client)
Description copied from interface: HttpClientConfigurer
Configure the HttpClient such as setting the authentication or proxying details

Specified by:
configureHttpClient in interface HttpClientConfigurer
Parameters:
client - the client

isProxy

public boolean isProxy()

getUsername

public String getUsername()

getPassword

public String getPassword()

getDomain

public String getDomain()

getHost

public String getHost()


Apache Camel