public class SSLSessionBindingEvent extends EventObject
SSLSession.putValue(String, Object) or
SSLSession.removeValue(String) , objects which implement the SSLSessionBindingListener will be receive an event of this type. The event's
name field is the key in which the listener is being bound or unbound.
SSLSession,
SSLSessionBindingListener,
Serialized Form
source| Constructor and Description |
|---|
SSLSessionBindingEvent(SSLSession
Constructs a new SSLSessionBindingEvent.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getName()
Returns the name to which the object is being bound, or the name from which the object is being unbound.
|
SSLSession |
getSession()
Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.
|
getSource, toStringpublic SSLSessionBindingEvent(SSLSessionsession, String name)
session - the SSLSession acting as the source of the event
name - the name to which the object is being bound or unbound
IllegalArgumentException - if
session is null.
public StringgetName()
public SSLSessiongetSession()
SSLSession