org.codehaus.plexus.security.summit.session
Interface SessionBindingListener

All Known Subinterfaces:
User

public interface SessionBindingListener

This interface is modelled after HttpSessionBindingListener.

Version:
$Id: SessionBindingListener.java 1801 2005-05-15 22:14:20Z jvanzyl $
Author:
Daniel Rall

Method Summary
 void valueBound(SessionBindingEvent event)
          Notifies the object that it is being bound to a session and identifies the session.
 void valueUnbound(SessionBindingEvent event)
          Notifies the object that it is being unbound from a session and identifies the session.
 

Method Detail

valueBound

public void valueBound(SessionBindingEvent event)
Notifies the object that it is being bound to a session and identifies the session.

Parameters:
event - A SessionBindingEvent object.

valueUnbound

public void valueUnbound(SessionBindingEvent event)
Notifies the object that it is being unbound from a session and identifies the session.

Parameters:
event - A SessionBindingEvent object.