Package javax.net.ssl
Interface SSLSessionBindingListener
- All Superinterfaces:
EventListener
public interface SSLSessionBindingListener extends EventListener
The interface to be implemented by any object that requires notification when
data objects are bound to (or unbound from) an
SSLSession.-
Method Summary
Modifier and Type Method Description voidvalueBound(SSLSessionBindingEvent event)Notifies this listener when a value is bound to anSSLSession.voidvalueUnbound(SSLSessionBindingEvent event)Notifies this listener when a value is unbound from anSSLSession.
-
Method Details
-
valueBound
Notifies this listener when a value is bound to anSSLSession.- Parameters:
event- the event data.
-
valueUnbound
Notifies this listener when a value is unbound from anSSLSession.- Parameters:
event- the event data.
-