org.apache.http.params
Interface HttpLinkedParams

All Superinterfaces:
HttpParams
All Known Implementing Classes:
BasicHttpParams

public interface HttpLinkedParams
extends HttpParams

Represents a collection of HTTP protocol and framework parameters that can be linked with another one to form a parameter hierarchy.
WARNING: This interface includes methods for building hierarchies of parameters. These methods are intended for internal use by the the HTTP Components framework. Use with caution.

Since:
4.0
Version:
$Revision: 542224 $
Author:
Oleg Kalnichevski

Method Summary
 HttpParams getDefaults()
          WARNING: This method is not part of the API.
 boolean isParameterSetLocally(java.lang.String name)
          WARNING: This method is not part of the API.
 void setDefaults(HttpParams params)
          WARNING: This method is not part of the API.
 
Methods inherited from interface org.apache.http.params.HttpParams
copy, getBooleanParameter, getDoubleParameter, getIntParameter, getLongParameter, getParameter, isParameterFalse, isParameterSet, isParameterTrue, setBooleanParameter, setDoubleParameter, setIntParameter, setLongParameter, setParameter
 

Method Detail

getDefaults

HttpParams getDefaults()
WARNING: This method is not part of the API. It is intended for internal use by the HTTP Components framework. Use with caution.
Returns the parent collection that the collection may defer to for a default value if a particular parameter is not explicitly set.

Returns:
the parent collection, or null
See Also:
setDefaults(HttpParams)

setDefaults

void setDefaults(HttpParams params)
WARNING: This method is not part of the API. It is intended for internal use by the HTTP Components framework. Use with caution.
Provides the parent collection that this collection may defer to for a default value if a particular parameter is not explicitly set.

Parameters:
params - the parent collection, or null
See Also:
getDefaults()

isParameterSetLocally

boolean isParameterSetLocally(java.lang.String name)
WARNING: This method is not part of the API. It is intended for internal use by the HTTP Components framework. Use with caution.

Parameters:
name - the parameter name
Returns:
true if the parameter is set locally, false otherwise
See Also:
getDefaults(), setDefaults(HttpParams)


Copyright © 2005-2009 Apache Software Foundation. All Rights Reserved.