Class HostParams
java.lang.Object
org.apache.commons.httpclient.params.DefaultHttpParams
org.apache.commons.httpclient.params.HostParams
- All Implemented Interfaces:
Serializable, Cloneable, HttpParams
This class represents a collection of HTTP protocol parameters applicable to
instances of HostConfiguration.
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.- Since:
- 3.0
- Version:
- $Revision: 480424 $
- Author:
- Oleg Kalnichevski
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDefines the request headers to be sent per default with each request. -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new collection of parameters with the collection returned byDefaultHttpParams.getDefaultParams()as a parent.HostParams(HttpParams defaults) Creates a new collection of parameters with the given parent. -
Method Summary
Modifier and TypeMethodDescriptionReturns the virtual host name.voidsetVirtualHost(String hostname) Sets the virtual host name.Methods inherited from class DefaultHttpParams
clear, clone, getBooleanParameter, getDefaultParams, getDefaults, getDoubleParameter, getIntParameter, getLongParameter, getParameter, isParameterFalse, isParameterSet, isParameterSetLocally, isParameterTrue, setBooleanParameter, setDefaults, setDoubleParameter, setHttpParamsFactory, setIntParameter, setLongParameter, setParameter, setParameters
-
Field Details
-
DEFAULT_HEADERS
Defines the request headers to be sent per default with each request.This parameter expects a value of type
Collection. The collection is expected to containHeaders.- See Also:
-
-
Constructor Details
-
HostParams
public HostParams()Creates a new collection of parameters with the collection returned byDefaultHttpParams.getDefaultParams()as a parent. The collection will defer to its parent for a default value if a particular parameter is not explicitly set in the collection itself.- See Also:
-
HostParams
Creates a new collection of parameters with the given parent. The collection will defer to its parent for a default value if a particular parameter is not explicitly set in the collection itself.- Parameters:
defaults- the parent collection to defer to, if a parameter is not explictly set in the collection itself.- See Also:
-
-
Method Details
-
setVirtualHost
Sets the virtual host name.- Parameters:
hostname- The host name
-
getVirtualHost
-