public interface SSLSessionBindingListener extends EventListener
SSLSession.putValue(String, Object) or
SSLSession.removeValue(String) , the event is communicated through a SSLSessionBindingEvent identifying the session.
SSLSession,
SSLSessionBindingEvent
| Modifier and Type | Method and Description |
|---|---|
void |
valueBound(SSLSessionBindingEvent
This is called to notify the listener that it is being bound into an SSLSession.
|
void |
valueUnbound(SSLSessionBindingEvent
This is called to notify the listener that it is being unbound from a SSLSession.
|
void valueBound(SSLSessionBindingEventevent)
event - the event identifying the SSLSession into which the listener is being bound.
void valueUnbound(SSLSessionBindingEventevent)
event - the event identifying the SSLSession from which the listener is being unbound.