All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class javax.net.ssl.SSLSessionBindingEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----javax.net.ssl.SSLSessionBindingEvent

public class SSLSessionBindingEvent
extends EventObject
This event is communicated to a SSLSessionBindingListener whenever such a listener is bound to or unbound from a SSLSession value. The event's source is the SSLSession to which the listener is being bound, or from which the listener is being unbound.

See Also:
SSLSession, SSLSessionBindingListener

Constructor Index

 o SSLSessionBindingEvent(SSLSession, String)
Constructs a new SSLSessionBindingEvent

Method Index

 o getName()
Returns the name to which the object is being bound, or the name from which the object is being unbound.
 o getSession()
Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.

Constructors

 o SSLSessionBindingEvent
 public SSLSessionBindingEvent(SSLSession session,
                               String name)
Constructs a new SSLSessionBindingEvent

Parameters:
session - the SSLSession acting as the source of the event

Methods

 o getName
 public String getName()
Returns the name to which the object is being bound, or the name from which the object is being unbound.

 o getSession
 public SSLSession getSession()
Returns the SSLSession into which the listener is being bound or from which the listener is being unbound.


All Packages  Class Hierarchy  This Package  Previous  Next  Index