| java.lang.Object org.apache.http.params.AbstractHttpParams org.apache.http.params.BasicHttpParams
BasicHttpParams | final public class BasicHttpParams extends AbstractHttpParams implements Serializable,Cloneable(Code) | | This class represents a collection of HTTP protocol parameters.
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.
author: Oleg Kalnichevski version: $Revision: 610464 $ |
BasicHttpParams | public BasicHttpParams()(Code) | | |
clear | public void clear()(Code) | | Removes all parameters from this collection.
|
copyParams | protected void copyParams(HttpParams target)(Code) | | Copies the locally defined parameters to the argument parameters.
This method is called from
BasicHttpParams.copy() .
Parameters: target - the parameters to which to copy |
isParameterSet | public boolean isParameterSet(String name)(Code) | | |
isParameterSetLocally | public boolean isParameterSetLocally(String name)(Code) | | |
removeParameter | public boolean removeParameter(String name)(Code) | | |
setParameters | public void setParameters(String[] names, Object value)(Code) | | Assigns the value to all the parameter with the given names
Parameters: names - array of parameter name Parameters: value - parameter value |
|
|