Package org.apache.http.protocol
Class DefaultedHttpContext
java.lang.Object
org.apache.http.protocol.DefaultedHttpContext
- All Implemented Interfaces:
HttpContext
Deprecated.
(4.3) no longer used.
HttpContext implementation that delegates resolution of an attribute
to the given default HttpContext instance if the attribute is not
present in the local one. The state of the local context can be mutated,
whereas the default context is treated as read-only.- Since:
- 4.0
-
Field Summary
Fields inherited from interface org.apache.http.protocol.HttpContext
RESERVED_PREFIX -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetAttribute(String id) Deprecated.Obtains attribute with the given name.Deprecated.Deprecated.Removes attribute with the given name from the context.voidsetAttribute(String id, Object obj) Deprecated.Sets value of the attribute with the given name.toString()Deprecated.
-
Constructor Details
-
DefaultedHttpContext
Deprecated.
-
-
Method Details
-
getAttribute
Deprecated.Description copied from interface:HttpContextObtains attribute with the given name.- Specified by:
getAttributein interfaceHttpContext- Parameters:
id- the attribute name.- Returns:
- attribute value, or
nullif not set.
-
removeAttribute
Deprecated.Description copied from interface:HttpContextRemoves attribute with the given name from the context.- Specified by:
removeAttributein interfaceHttpContext- Parameters:
id- the attribute name.- Returns:
- attribute value, or
nullif not set.
-
setAttribute
Deprecated.Description copied from interface:HttpContextSets value of the attribute with the given name.- Specified by:
setAttributein interfaceHttpContext- Parameters:
id- the attribute name.obj- the attribute value.
-
getDefaults
Deprecated. -
toString
Deprecated.
-