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) anSSLSession.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
valueBound
void valueBound(SSLSessionBindingEvent event)
Notifies this listener when a value is bound to anSSLSession.- Parameters:
event- the event data.
-
valueUnbound
void valueUnbound(SSLSessionBindingEvent event)
Notifies this listener when a value is unbound from anSSLSession.- Parameters:
event- the event data.
-
-