EventListener
public interface SSLSessionBindingListener extends EventListener
SSLSession.putValue(String, Object)
or SSLSession.removeValue(String)
, the event is communicated through a SSLSessionBindingEvent identifying the session.Modifier and Type | Method | Description |
---|---|---|
void |
valueBound |
This is called to notify the listener that it is being bound into an SSLSession. |
void |
valueUnbound |
This is called to notify the listener that it is being unbound from a SSLSession. |
void valueBound(SSLSessionBindingEvent event)
event
- the event identifying the SSLSession into which the listener is being bound.void valueUnbound(SSLSessionBindingEvent event)
event
- the event identifying the SSLSession from which the listener is being unbound.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/javax/net/ssl/SSLSessionBindingListener.html