Class BasicHttpContext
- java.lang.Object
-
- org.apache.hc.core5.http.protocol.BasicHttpContext
-
- All Implemented Interfaces:
HttpContext
@Contract(threading=SAFE_CONDITIONAL) public class BasicHttpContext extends java.lang.Object implements HttpContext
Default implementation ofHttpContext.Please note instances of this class can be thread unsafe if the parent context is not thread safe.
- Since:
- 4.0
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.Object>mapprivate HttpContextparentContextprivate ProtocolVersionversion-
Fields inherited from interface org.apache.hc.core5.http.protocol.HttpContext
RESERVED_PREFIX
-
-
Constructor Summary
Constructors Constructor Description BasicHttpContext()BasicHttpContext(HttpContext parentContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()java.lang.ObjectgetAttribute(java.lang.String id)Obtains attribute with the given name.ProtocolVersiongetProtocolVersion()Returns protocol version used in this context.java.lang.ObjectremoveAttribute(java.lang.String id)Removes attribute with the given name from the context.java.lang.ObjectsetAttribute(java.lang.String id, java.lang.Object obj)Sets value of the attribute with the given name.voidsetProtocolVersion(ProtocolVersion version)Sets protocol version used in this context.java.lang.StringtoString()
-
-
-
Field Detail
-
parentContext
private final HttpContext parentContext
-
map
private final java.util.Map<java.lang.String,java.lang.Object> map
-
version
private ProtocolVersion version
-
-
Constructor Detail
-
BasicHttpContext
public BasicHttpContext()
-
BasicHttpContext
public BasicHttpContext(HttpContext parentContext)
-
-
Method Detail
-
getAttribute
public java.lang.Object getAttribute(java.lang.String id)
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
public java.lang.Object setAttribute(java.lang.String id, java.lang.Object obj)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
public java.lang.Object removeAttribute(java.lang.String id)
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
public ProtocolVersion getProtocolVersion()
Description copied from interface:HttpContextReturns protocol version used in this context.- Specified by:
getProtocolVersionin interfaceHttpContext- Since:
- 5.0
-
setProtocolVersion
public void setProtocolVersion(ProtocolVersion version)
Description copied from interface:HttpContextSets protocol version used in this context.- Specified by:
setProtocolVersionin interfaceHttpContext- Since:
- 5.0
-
clear
public void clear()
- Since:
- 4.2
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-