public interface SSLSessionBindingListener extends EventListener
SSLSession.putValue(String, Object)
或SSLSession.removeValue(String)
发生任一事件时,通过标识会话的SSLSessionBindingEvent来传送事件。
SSLSession
, SSLSessionBindingEvent
Modifier and Type | Method and Description |
---|---|
void |
valueBound(SSLSessionBindingEvent event)
这被称为通知侦听器它被绑定到SSLSession中。
|
void |
valueUnbound(SSLSessionBindingEvent event)
这被称为通知侦听器它正在从SSLSession绑定。
|
void valueBound(SSLSessionBindingEvent event)
event
- 识别侦听器绑定到的SSLSession的事件。
void valueUnbound(SSLSessionBindingEvent event)
event
- 识别侦听器未绑定的SSLSession的事件。