javax.net.ssl

Interface SSLSessionBindingListener

public interface SSLSessionBindingListener extends EventListener

An event listener interface that should be notified when it is bound or unbound to a {@link SSLSession}.
Method Summary
voidvalueBound(SSLSessionBindingEvent event)
This method is called of all objects when they are bound to an SSL session.
voidvalueUnbound(SSLSessionBindingEvent event)
This method is called of all objects when they are unbound to an SSL session.

Method Detail

valueBound

public void valueBound(SSLSessionBindingEvent event)
This method is called of all objects when they are bound to an SSL session.

Parameters: event The binding event.

valueUnbound

public void valueUnbound(SSLSessionBindingEvent event)
This method is called of all objects when they are unbound to an SSL session.

Parameters: event The binding event.