Uses of Class
org.apache.commons.httpclient.HostConfiguration

Packages that use HostConfiguration
org.apache.commons.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
org.apache.commons.httpclient.params HttpClient preferences framework. 
 

Uses of HostConfiguration in org.apache.commons.httpclient
 

Fields in org.apache.commons.httpclient declared as HostConfiguration
static HostConfiguration HostConfiguration.ANY_HOST_CONFIGURATION
          A value to represent any host configuration, instead of using something like null.
 

Methods in org.apache.commons.httpclient that return HostConfiguration
 HostConfiguration HttpMethod.getHostConfiguration()
          Deprecated. no longer applicable
 HostConfiguration ProxyClient.getHostConfiguration()
          Returns the host configuration associated with the ProxyClient.
 HostConfiguration HttpMethodBase.getHostConfiguration()
          Deprecated. no longer applicable
 HostConfiguration HttpClient.getHostConfiguration()
          Returns the host configuration associated with the HttpClient.
 

Methods in org.apache.commons.httpclient with parameters of type HostConfiguration
 void ProxyClient.setHostConfiguration(HostConfiguration hostConfiguration)
          Assigns the host configuration to use with the ProxyClient.
 void HttpMethodBase.setHostConfiguration(HostConfiguration hostconfig)
          Deprecated. no longer applicable
 HttpConnection MultiThreadedHttpConnectionManager.getConnection(HostConfiguration hostConfiguration)
           
 HttpConnection MultiThreadedHttpConnectionManager.getConnectionWithTimeout(HostConfiguration hostConfiguration, long timeout)
           
 HttpConnection MultiThreadedHttpConnectionManager.getConnection(HostConfiguration hostConfiguration, long timeout)
          Deprecated. Use #getConnectionWithTimeout(HostConfiguration, long)
 int MultiThreadedHttpConnectionManager.getConnectionsInPool(HostConfiguration hostConfiguration)
          Gets the total number of pooled connections for the given host configuration.
 int MultiThreadedHttpConnectionManager.getConnectionsInUse(HostConfiguration hostConfiguration)
          Deprecated. Use MultiThreadedHttpConnectionManager.getConnectionsInPool(HostConfiguration)
 int HttpClient.executeMethod(HostConfiguration hostConfiguration, HttpMethod method)
          Executes the given HTTP method using custom host configuration.
 int HttpClient.executeMethod(HostConfiguration hostconfig, HttpMethod method, HttpState state)
          Executes the given HTTP method using the given custom host configuration with the given custom HTTP state.
 void HttpClient.setHostConfiguration(HostConfiguration hostConfiguration)
          Assigns the host configuration to use with the HttpClient.
 HttpConnection HttpConnectionManager.getConnection(HostConfiguration hostConfiguration)
          Gets an HttpConnection for a given host configuration.
 HttpConnection HttpConnectionManager.getConnection(HostConfiguration hostConfiguration, long timeout)
          Deprecated. Use #getConnectionWithTimeout(HostConfiguration, long)
 HttpConnection HttpConnectionManager.getConnectionWithTimeout(HostConfiguration hostConfiguration, long timeout)
          Gets an HttpConnection for a given host configuration.
 HttpConnection SimpleHttpConnectionManager.getConnection(HostConfiguration hostConfiguration)
           
 HttpConnection SimpleHttpConnectionManager.getConnectionWithTimeout(HostConfiguration hostConfiguration, long timeout)
           
 HttpConnection SimpleHttpConnectionManager.getConnection(HostConfiguration hostConfiguration, long timeout)
          Deprecated. Use #getConnectionWithTimeout(HostConfiguration, long)
 

Constructors in org.apache.commons.httpclient with parameters of type HostConfiguration
HttpConnection(HostConfiguration hostConfiguration)
          Creates a new HTTP connection for the given host configuration.
HostConfiguration(HostConfiguration hostConfiguration)
          Copy constructor for HostConfiguration
 

Uses of HostConfiguration in org.apache.commons.httpclient.params
 

Methods in org.apache.commons.httpclient.params with parameters of type HostConfiguration
 void HttpConnectionManagerParams.setMaxConnectionsPerHost(HostConfiguration hostConfiguration, int maxHostConnections)
          Sets the maximum number of connections to be used for the given host config.
 int HttpConnectionManagerParams.getMaxConnectionsPerHost(HostConfiguration hostConfiguration)
          Gets the maximum number of connections to be used for a particular host config.
 



Copyright © 2001-2006 Apache Software Foundation. All Rights Reserved.