SSLSessionBindingEventpublic class SSLSessionBindingEvent extends EventObject implements SerializableThe event sent to an {@code SSLSessionBindingListener} when the listener
object is bound ({@link SSLSession#putValue(String, Object)}) or unbound
({@link SSLSession#removeValue(String)}) to an {@code SSLSession}. |
Fields Summary |
---|
private static final long | serialVersionUID | private String | name |
Constructors Summary |
---|
public SSLSessionBindingEvent(SSLSession session, String name)Creates a new {@code SSLSessionBindingEvent} for the specified session
indicating a binding event for the specified name.
super(session);
this.name = name;
|
Methods Summary |
---|
public java.lang.String | getName()Returns the name of the binding being added or removed.
return name;
| public javax.net.ssl.SSLSession | getSession()Returns the session to which the binding is added or from which it is
removed.
return (SSLSession)this.source;
|
|