Interface SessionBindingEvent
public interface SessionBindingEvent
This interface is modelled after
javax.servlet.http.HttpSessionBindingListener.
- Version:
- $Id: SessionBindingEvent.java 1884679 2020-12-21 12:56:47Z gk $
- Author:
- Daniel Rall
-
Method Summary
Modifier and Type Method Description String
getName()
Returns the name with which the object is bound to or unbound from the session.Session
getSession()
Returns the session to or from which the object is bound or unbound.
-
Method Details
-
getName
String getName()Returns the name with which the object is bound to or unbound from the session.- Returns:
- The name used for binding.
-
getSession
Session getSession()Returns the session to or from which the object is bound or unbound.- Returns:
- A session object.
-