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 Detail

      • valueBound

        void valueBound​(SSLSessionBindingEvent event)
        Notifies this listener when a value is bound to an SSLSession.
        Parameters:
        event - the event data.
      • valueUnbound

        void valueUnbound​(SSLSessionBindingEvent event)
        Notifies this listener when a value is unbound from an SSLSession.
        Parameters:
        event - the event data.