This documentation differs from the official API.
Jadeite adds
extra features to the API including:
variable font sizes,
constructions examples,
placeholders for classes and methods, and auto-generated “See Also” links.
Additionally it
is missing some items found in standard Javadoc documentation, including:
generics type information,
“Deprecated” tags and comments,
“See Also” links,
along with other minor differences.
Please send any questions or feedback to
bam@cs.cmu.edu.
javax.net.ssl
interface SSLSessionBindingListener
- All Superinterfaces:
- EventListener
public interface SSLSessionBindingListener
extends EventListener
This interface is implemented by objects which want to know when
they are being bound or unbound from a SSLSession. When either event
occurs via {@link SSLSession#putValue(String, Object)}
or {@link SSLSession#removeValue(String)}, the event is communicated
through a SSLSessionBindingEvent identifying the session.
- See Also (auto-generated):
-
X509Certificate
Util
Arrays
Method Summary |
void |
This is called to notify the listener that it is being bound into
an SSLSession.
|
void |
This is called to notify the listener that it is being unbound
from a SSLSession.
|
valueBound
public void valueBound(SSLSessionBindingEvent event)
-
This is called to notify the listener that it is being bound into
an SSLSession.
- Parameters:
event
- the event identifying the SSLSession into
which the listener is being bound.
valueUnbound
public void valueUnbound(SSLSessionBindingEvent event)
-
This is called to notify the listener that it is being unbound
from a SSLSession.
- Parameters:
event
- the event identifying the SSLSession from
which the listener is being unbound.
This documentation differs from the official API.
Jadeite adds
extra features to the API including:
variable font sizes,
constructions examples,
placeholders for classes and methods, and auto-generated “See Also” links.
Additionally it
is missing some items found in standard Javadoc documentation, including:
generics type information,
“Deprecated” tags and comments,
“See Also” links,
along with other minor differences.
Please send any questions or feedback to
bam@cs.cmu.edu.
This page displays the
Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
The official Sun™ documentation can be found here at
http://java.sun.com/javase/6/docs/api/.