javax.net.ssl
Class SSLSessionBindingEvent

java.lang.Object
  extended by java.util.EventObject
      extended by javax.net.ssl.SSLSessionBindingEvent
All Implemented Interfaces:
Serializable

public class SSLSessionBindingEvent
extends EventObject

An event raised by SSLSession objects when objects are bound to them.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
SSLSessionBindingEvent(SSLSession session, String name)
          Creates a new binding event.
 
Method Summary
 String getName()
          Returns the name the object was bound under.
 SSLSession getSession()
          Returns the session that the object was bound to.
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SSLSessionBindingEvent

public SSLSessionBindingEvent(SSLSession session,
                              String name)
Creates a new binding event.

Parameters:
session - The session being bound to.
name - The name the object was bound under.
Method Detail

getName

public String getName()
Returns the name the object was bound under.

Returns:
The name.

getSession

public SSLSession getSession()
Returns the session that the object was bound to.

Returns:
The session.