Package org.apache.http.protocol
Class SyncBasicHttpContext
- java.lang.Object
-
- org.apache.http.protocol.BasicHttpContext
-
- org.apache.http.protocol.SyncBasicHttpContext
-
- All Implemented Interfaces:
HttpContext
@Deprecated public class SyncBasicHttpContext extends BasicHttpContext
Deprecated.(4.2) HttpContext instances may not be shared by multiple threadsThread-safe extension of theBasicHttpContext.- Since:
- 4.0
-
-
Field Summary
-
Fields inherited from interface org.apache.http.protocol.HttpContext
RESERVED_PREFIX
-
-
Constructor Summary
Constructors Constructor Description SyncBasicHttpContext()Deprecated.SyncBasicHttpContext(HttpContext parentContext)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidclear()Deprecated.java.lang.ObjectgetAttribute(java.lang.String id)Deprecated.Obtains attribute with the given name.java.lang.ObjectremoveAttribute(java.lang.String id)Deprecated.Removes attribute with the given name from the context.voidsetAttribute(java.lang.String id, java.lang.Object obj)Deprecated.Sets value of the attribute with the given name.-
Methods inherited from class org.apache.http.protocol.BasicHttpContext
toString
-
-
-
-
Constructor Detail
-
SyncBasicHttpContext
public SyncBasicHttpContext(HttpContext parentContext)
Deprecated.
-
SyncBasicHttpContext
public SyncBasicHttpContext()
Deprecated.- Since:
- 4.2
-
-
Method Detail
-
getAttribute
public java.lang.Object getAttribute(java.lang.String id)
Deprecated.Description copied from interface:HttpContextObtains attribute with the given name.- Specified by:
getAttributein interfaceHttpContext- Overrides:
getAttributein classBasicHttpContext- Parameters:
id- the attribute name.- Returns:
- attribute value, or
nullif not set.
-
setAttribute
public void setAttribute(java.lang.String id, java.lang.Object obj)Deprecated.Description copied from interface:HttpContextSets value of the attribute with the given name.- Specified by:
setAttributein interfaceHttpContext- Overrides:
setAttributein classBasicHttpContext- Parameters:
id- the attribute name.obj- the attribute value.
-
removeAttribute
public java.lang.Object removeAttribute(java.lang.String id)
Deprecated.Description copied from interface:HttpContextRemoves attribute with the given name from the context.- Specified by:
removeAttributein interfaceHttpContext- Overrides:
removeAttributein classBasicHttpContext- Parameters:
id- the attribute name.- Returns:
- attribute value, or
nullif not set.
-
clear
public void clear()
Deprecated.- Overrides:
clearin classBasicHttpContext- Since:
- 4.2
-
-