SSLSessionBindingEvent | javax.net.ssl |
Java 1.4 | serializable event |
An
object of this type is passed to the valueBound( )
and valueUnbound( ) methods of and object that
implements SSLSessionBindingListener when that
object is bound or unbound in a SSLSession with
the putValue( ) or removeValue(
) methods of SSLSession.
getName( ) returns the name to which the object
was bound or unbound, and getSession( ) returns
the SSLSession object in which the binding was
created or removed.

public class SSLSessionBindingEvent extends java.util.EventObject {
// Public Constructors
public SSLSessionBindingEvent(SSLSession session, String name);
// Public Instance Methods
public String getName( );
public SSLSession getSession( );
}
Passed To
SSLSessionBindingListener.{valueBound( ),
valueUnbound( )}
|