SSLSessionBindingEvent
public class SSLSessionBindingEvent
extends EventObject
此事件传播到SSLSessionBindingListener。 当侦听器对象被绑定或解除绑定到SSLSession putValue(String, Object)
或removeValue(String)
,实现SSLSessionBindingListener的对象将收到此类型的事件。 该事件的name
字段是侦听器绑定或解除绑定的关键。
Summary
Public constructors
SSLSessionBindingEvent
SSLSessionBindingEvent (SSLSession session,
String name)
构造一个新的SSLSessionBindingEvent。
Parameters |
session |
SSLSession : the SSLSession acting as the source of the event |
name |
String : the name to which the object is being bound or unbound |
Public methods
getName
String getName ()
返回该对象所绑定的名称或该对象被解除绑定的名称。
Returns |
String |
the name to which the object is being bound or unbound |
getSession
SSLSession getSession ()
返回侦听器绑定到的或侦听器未绑定的SSLSession。