- java.lang.Object
-
- java.util.EventObject
-
- javax.net.ssl.SSLSessionBindingEvent
-
- All Implemented Interfaces:
- Serializable
public class SSLSessionBindingEvent extends EventObject
This event is propagated to a SSLSessionBindingListener. When a listener object is bound or unbound to an SSLSession bySSLSession.putValue(String, Object)
orSSLSession.removeValue(String)
, objects which implement the SSLSessionBindingListener will be receive an event of this type. The event'sname
field is the key in which the listener is being bound or unbound.- Since:
- 1.4
- See Also:
SSLSession
,SSLSessionBindingListener
, Serialized Form
-
-
Field Summary
-
Fields inherited from class java.util.EventObject
source
-
-
Constructor Summary
Constructors Constructor and Description SSLSessionBindingEvent(SSLSession session, String name)
Constructs a new SSLSessionBindingEvent.
-
Method Summary
Methods Modifier and Type Method and Description String
getName()
Returns the name to which the object is being bound, or the name from which the object is being unbound.SSLSession
getSession()
Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.
-
-
-
Constructor Detail
-
SSLSessionBindingEvent
public SSLSessionBindingEvent(SSLSession session, String name)
Constructs a new SSLSessionBindingEvent.- Parameters:
session
- the SSLSession acting as the source of the eventname
- the name to which the object is being bound or unbound- Throws:
IllegalArgumentException
- ifsession
is null.
-
-
Method Detail
-
getName
public String getName()
Returns the name to which the object is being bound, or the name from which the object is being unbound.- Returns:
- the name to which the object is being bound or unbound
-
getSession
public SSLSession getSession()
Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.- Returns:
- the
SSLSession
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 13:46:03 Cette version de la page est en cache (à la date du 05/11/2024 13:46:03) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/net/ssl/sslsessionbindingevent.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.