-
- All Superinterfaces:
-
EventListener
public interface SSLSessionBindingListener extends EventListener
该接口由想要知道何时被绑定或从SSLSession绑定的对象来实现。 当任何事件通过SSLSession.putValue(String, Object)
或SSLSession.removeValue(String)
发生时,事件通过标识会话的SSLSessionBindingEvent进行通信。- 从以下版本开始:
- 1.4
- 另请参见:
-
SSLSession
,SSLSessionBindingEvent
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 void
valueBound(SSLSessionBindingEvent event)
这被称为通知侦听器它被绑定到SSLSession中。void
valueUnbound(SSLSessionBindingEvent event)
这被称为通知侦听器它正在从SSLSession绑定。
-
-
-
方法详细信息
-
valueBound
void valueBound(SSLSessionBindingEvent event)
这被称为通知侦听器它被绑定到SSLSession中。- 参数
-
event
- 识别侦听器绑定到的SSLSession的事件。
-
valueUnbound
void valueUnbound(SSLSessionBindingEvent event)
这被称为通知侦听器它正在从SSLSession绑定。- 参数
-
event
- 识别侦听器未绑定的SSLSession的事件。
-
-