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的事件。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.