org.apache.commons.httpclient.params
Class HttpConnectionManagerParams

java.lang.Object
  extended byorg.apache.commons.httpclient.params.DefaultHttpParams
      extended byorg.apache.commons.httpclient.params.HttpConnectionParams
          extended byorg.apache.commons.httpclient.params.HttpConnectionManagerParams
All Implemented Interfaces:
java.lang.Cloneable, HttpParams, java.io.Serializable

public class HttpConnectionManagerParams
extends HttpConnectionParams

This class represents a collection of HTTP protocol parameters applicable to HTTP connection managers. Protocol parameters may be linked together to form a hierarchy. If a particular parameter value has not been explicitly defined in the collection itself, its value will be drawn from the parent collection of parameters.

Version:
$Revision: 1.5 $
Author:
Oleg Kalnichevski
See Also:
Serialized Form

Field Summary
static java.lang.String MAX_HOST_CONNECTIONS
          Defines the maximum number of connections allowed per host.
static java.lang.String MAX_TOTAL_CONNECTIONS
          Defines the maximum number of connections allowed overall.
 
Fields inherited from class org.apache.commons.httpclient.params.HttpConnectionParams
CONNECTION_TIMEOUT, SO_RCVBUF, SO_SNDBUF, SO_TIMEOUT, STALE_CONNECTION_CHECK, TCP_NODELAY
 
Constructor Summary
HttpConnectionManagerParams()
           
 
Methods inherited from class org.apache.commons.httpclient.params.HttpConnectionParams
getConnectionTimeout, getReceiveBufferSize, getSendBufferSize, getSoTimeout, getTcpNoDelay, isStaleCheckingEnabled, setConnectionTimeout, setReceiveBufferSize, setSendBufferSize, setSoTimeout, setStaleCheckingEnabled, setTcpNoDelay
 
Methods inherited from class org.apache.commons.httpclient.params.DefaultHttpParams
clear, clone, getBooleanParameter, getDefaultParams, getDefaults, getDoubleParameter, getIntParameter, getLongParameter, getParameter, isParameterFalse, isParameterTrue, setBooleanParameter, setDefaults, setDoubleParameter, setHttpParamsFactory, setIntParameter, setLongParameter, setParameter, setParameters
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MAX_HOST_CONNECTIONS

public static java.lang.String MAX_HOST_CONNECTIONS
Defines the maximum number of connections allowed per host.

This parameter expects a value of type Integer.


MAX_TOTAL_CONNECTIONS

public static java.lang.String MAX_TOTAL_CONNECTIONS
Defines the maximum number of connections allowed overall.

This parameter expects a value of type Integer.

Constructor Detail

HttpConnectionManagerParams

public HttpConnectionManagerParams()


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