JavaTM 2 Platform
Standard Ed. 6

javax.net.ssl
接口 SSLSessionBindingListener

所有超级接口:
EventListener

public interface SSLSessionBindingListener
extends EventListener

想知道何时将它们绑定到 SSLSession 或从 SSLSession 解除绑定的对象实现此接口。不管事件通过 SSLSession.putValue(String, Object) 还是 SSLSession.removeValue(String) 出现,事件都通过标识此会话的 SSLSessionBindingEvent 进行通信。

从以下版本开始:
1.4
另请参见:
SSLSession, SSLSessionBindingEvent

方法摘要
 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 中被解其绑定的标识 SSLSession 的事件。

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only