Package org.apache.http.impl.nio
Class SessionHttpContext
- java.lang.Object
-
- org.apache.http.impl.nio.SessionHttpContext
-
- All Implemented Interfaces:
HttpContext
class SessionHttpContext extends java.lang.Object implements HttpContext
-
-
Field Summary
Fields Modifier and Type Field Description private IOSessionioSession-
Fields inherited from interface org.apache.http.protocol.HttpContext
RESERVED_PREFIX
-
-
Constructor Summary
Constructors Constructor Description SessionHttpContext(IOSession ioSession)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ObjectgetAttribute(java.lang.String id)Obtains attribute with the given name.java.lang.ObjectremoveAttribute(java.lang.String id)Removes attribute with the given name from the context.voidsetAttribute(java.lang.String id, java.lang.Object obj)Sets value of the attribute with the given name.java.lang.StringtoString()
-
-
-
Field Detail
-
ioSession
private final IOSession ioSession
-
-
Constructor Detail
-
SessionHttpContext
public SessionHttpContext(IOSession ioSession)
-
-
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.
-
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.
-
setAttribute
public void 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.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object- Since:
- 4.4.7
-
-