|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.http.impl.nio.reactor.SSLIOSession
public class SSLIOSession
A decorator class intended to transparently extend an IOSession
with transport layer security capabilities based on the SSL/TLS protocol.
| Field Summary |
|---|
| Fields inherited from interface org.apache.http.nio.reactor.IOSession |
|---|
ACTIVE, ATTACHMENT_KEY, CLOSED, CLOSING |
| Constructor Summary | |
|---|---|
SSLIOSession(IOSession session,
SSLContext sslContext,
SSLIOSessionHandler handler)
Deprecated. |
|
SSLIOSession(IOSession session,
SSLContext sslContext,
SSLSetupHandler handler)
|
|
| Method Summary | |
|---|---|
void |
bind(SSLMode mode,
HttpParams params)
|
ByteChannel |
channel()
Returns the underlying I/O channel associated with this session. |
void |
clearEvent(int op)
Clears interest in a particular I/O event type by updating the event mask associated with the session. |
void |
close()
Terminates the session gracefully and closes the underlying I/O channel. |
Object |
getAttribute(String name)
Returns the value of the attribute with the given name. |
int |
getEventMask()
Returns mask of I/O evens this session declared interest in. |
SocketAddress |
getLocalAddress()
Returns local address. |
SocketAddress |
getRemoteAddress()
Returns address of the remote peer. |
int |
getSocketTimeout()
Returns value of the socket timeout in milliseconds. |
int |
getStatus()
Returns status of the session: |
boolean |
hasBufferedInput()
Determines if the input buffer associated with the session contains data. |
boolean |
hasBufferedOutput()
Determines if the output buffer associated with the session contains data. |
void |
inboundTransport()
|
boolean |
isAppInputReady()
|
boolean |
isAppOutputReady()
|
boolean |
isClosed()
Determines if the session has been terminated. |
boolean |
isInboundDone()
|
boolean |
isOutboundDone()
|
void |
outboundTransport()
|
Object |
removeAttribute(String name)
Removes attribute with the given name. |
void |
setAttribute(String name,
Object obj)
This method can be used to associate a particular object with the session by the given attribute name. |
void |
setBufferStatus(SessionBufferStatus status)
Quite often I/O sessions need to maintain internal I/O buffers in order to transform input / output data prior to returning it to the consumer or writing it to the underlying channel. |
void |
setEvent(int op)
Declares interest in a particular I/O event type by updating the event mask associated with the session. |
void |
setEventMask(int ops)
Declares interest in I/O event notifications by setting the event mask associated with the session |
void |
setSocketTimeout(int timeout)
Sets value of the socket timeout in milliseconds. |
void |
shutdown()
Terminates the session by shutting down the underlying I/O channel. |
String |
toString()
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public SSLIOSession(IOSession session,
SSLContext sslContext,
SSLSetupHandler handler)
@Deprecated
public SSLIOSession(IOSession session,
SSLContext sslContext,
SSLIOSessionHandler handler)
| Method Detail |
|---|
public void bind(SSLMode mode,
HttpParams params)
throws SSLException
SSLException
public boolean isAppInputReady()
throws IOException
IOException
public boolean isAppOutputReady()
throws IOException
IOException - - not thrown currently
public void inboundTransport()
throws IOException
IOException - - not thrown currently
public void outboundTransport()
throws IOException
IOExceptionpublic void close()
IOSession
close in interface IOSessionpublic void shutdown()
IOSession
shutdown in interface IOSessionpublic int getStatus()
IOSession
IOSession.ACTIVE: session is active.
IOSession.CLOSING: session is being closed.
IOSession.CLOSED: session has been terminated.
getStatus in interface IOSessionpublic boolean isClosed()
IOSession
isClosed in interface IOSessiontrue if the session has been terminated,
false otherwise.public boolean isInboundDone()
public boolean isOutboundDone()
public ByteChannel channel()
IOSession
channel in interface IOSessionpublic SocketAddress getLocalAddress()
IOSession
getLocalAddress in interface IOSessionpublic SocketAddress getRemoteAddress()
IOSession
getRemoteAddress in interface IOSessionpublic int getEventMask()
IOSession
getEventMask in interface IOSessionpublic void setEventMask(int ops)
IOSession
setEventMask in interface IOSessionops - new I/O event mask.public void setEvent(int op)
IOSession
setEvent in interface IOSessionop - I/O event type.public void clearEvent(int op)
IOSession
clearEvent in interface IOSessionop - I/O event type.public int getSocketTimeout()
IOSession0 signifies the session cannot time out.
getSocketTimeout in interface IOSessionpublic void setSocketTimeout(int timeout)
IOSession0 signifies the session cannot time out.
setSocketTimeout in interface IOSessiontimeout - socket timeout.public boolean hasBufferedInput()
IOSession
hasBufferedInput in interface IOSessionhasBufferedInput in interface SessionBufferStatustrue if the session input buffer contains data,
false otherwise.public boolean hasBufferedOutput()
IOSession
hasBufferedOutput in interface IOSessionhasBufferedOutput in interface SessionBufferStatustrue if the session output buffer contains data,
false otherwise.public void setBufferStatus(SessionBufferStatus status)
IOSession
I/O sessions can be made aware of the status of external session buffers
using the SessionBufferStatus interface.
setBufferStatus in interface IOSessionpublic Object getAttribute(String name)
IOSessionnull if not set.
The value of the session attachment object can be obtained using
IOSession.ATTACHMENT_KEY name.
getAttribute in interface IOSessionname - name of the attribute.
IOSession.setAttribute(String, Object)public Object removeAttribute(String name)
IOSession
removeAttribute in interface IOSessionname - name of the attribute to be removed.
IOSession.setAttribute(String, Object)
public void setAttribute(String name,
Object obj)
IOSessionI/O sessions are not bound to an execution thread, therefore one cannot use the context of the thread to store a session's state. All details about a particular session must be stored within the session itself.
setAttribute in interface IOSessionname - name of the attribute.obj - value of the attribute.public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||