Class BasicHttpContext
java.lang.Object
org.apache.hc.core5.http.protocol.BasicHttpContext
- All Implemented Interfaces:
HttpContext
@Deprecated
@Contract(threading=SAFE_CONDITIONAL)
public class BasicHttpContext
extends Object
implements HttpContext
Deprecated.
Do not use.
Default implementation of
HttpContext.
Please note instances of this class can be thread unsafe if the parent context is not thread safe.
-
Field Summary
FieldsModifier and TypeFieldDescriptionDeprecated.private final HttpContextDeprecated.private ProtocolVersionDeprecated.Fields inherited from interface HttpContext
RESERVED_PREFIX -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Deprecated.getAttribute(String id) Deprecated.Obtains attribute with the given name.Deprecated.Returns protocol version used in this context.Deprecated.Removes attribute with the given name from the context.setAttribute(String id, Object obj) Deprecated.Sets value of the attribute with the given name.voidsetProtocolVersion(ProtocolVersion version) Deprecated.Sets protocol version used in this context.toString()Deprecated.
-
Field Details
-
parentContext
Deprecated. -
map
-
version
Deprecated.
-
-
Constructor Details
-
BasicHttpContext
public BasicHttpContext()Deprecated. -
BasicHttpContext
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.
-
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.- Returns:
- the previous value associated with
id, ornullif there was no mapping forid.
-
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.
-
getProtocolVersion
Deprecated.Description copied from interface:HttpContextReturns protocol version used in this context.- Specified by:
getProtocolVersionin interfaceHttpContext- Since:
- 5.0
-
setProtocolVersion
Deprecated.Description copied from interface:HttpContextSets protocol version used in this context.- Specified by:
setProtocolVersionin interfaceHttpContext- Since:
- 5.0
-
clear
public void clear()Deprecated.- Since:
- 4.2
-
toString
-