org.codehaus.plexus.security.summit.session
Class DefaultSessionBindingEvent

java.lang.Object
  extended byorg.codehaus.plexus.security.summit.session.DefaultSessionBindingEvent
All Implemented Interfaces:
SessionBindingEvent

public class DefaultSessionBindingEvent
extends java.lang.Object
implements SessionBindingEvent

Default implementation of the org.apache.fulcrum.security.session.SessionBindingEvent interface.

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

Field Summary
private  java.lang.String name
           
private  Session session
           
 
Constructor Summary
DefaultSessionBindingEvent(javax.servlet.http.HttpSessionBindingEvent event)
           
 
Method Summary
 java.lang.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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

session

private Session session

name

private java.lang.String name
Constructor Detail

DefaultSessionBindingEvent

public DefaultSessionBindingEvent(javax.servlet.http.HttpSessionBindingEvent event)
Method Detail

getSession

public Session getSession()
Description copied from interface: SessionBindingEvent
Returns the session to or from which the object is bound or unbound.

Specified by:
getSession in interface SessionBindingEvent
Returns:
A session object.

getName

public java.lang.String getName()
Description copied from interface: SessionBindingEvent
Returns the name with which the object is bound to or unbound from the session.

Specified by:
getName in interface SessionBindingEvent
Returns:
The name used for binding.