public interface SSLSessionBindingListener
implements EventListener
javax.net.ssl.SSLSessionBindingListener |
这个接口由想要知道它们何时被绑定或从SSLSession解除绑定的对象实现。 当通过putValue(String, Object)
或removeValue(String)
发生任一事件时,通过标识会话的SSLSessionBindingEvent传达事件。
也可以看看:
Public methods |
|
---|---|
abstract void |
valueBound(SSLSessionBindingEvent event) 这被称为通知监听器它正被绑定到一个SSLSession中。 |
abstract void |
valueUnbound(SSLSessionBindingEvent event) 这被称为通知监听器它正在从SSLSession中解除绑定。 |
void valueBound (SSLSessionBindingEvent event)
这被称为通知监听器它正被绑定到一个SSLSession中。
Parameters | |
---|---|
event |
SSLSessionBindingEvent : the event identifying the SSLSession into which the listener is being bound. |
void valueUnbound (SSLSessionBindingEvent event)
这被称为通知监听器它正在从SSLSession中解除绑定。
Parameters | |
---|---|
event |
SSLSessionBindingEvent : the event identifying the SSLSession from which the listener is being unbound. |