org.norther.tammi.spray.filter.chain
Class ServletRequestBindingEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.norther.tammi.spray.filter.chain.ServletRequestBindingEvent
All Implemented Interfaces:
Serializable

public class ServletRequestBindingEvent
extends EventObject

Events of this type are sent to an object that implements the ServletRequestBindingListener interface when it is bound to or unbound from a request.

Author:
Ilkka Priha
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
ServletRequestBindingEvent(ServletRequest request, HttpFilterChain chain, String name)
          Constructs a new event.
 
Method Summary
 HttpFilterChain getFilterChain()
          Gets the filter chain if any.
 String getName()
          Gets the attribute name.
 ServletRequest getRequest()
          Gets the target request.
 
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

ServletRequestBindingEvent

public ServletRequestBindingEvent(ServletRequest request,
                                  HttpFilterChain chain,
                                  String name)
Constructs a new event.

Parameters:
request - the target request.
chain - the filter chain.
name - the attribute name.
Method Detail

getRequest

public ServletRequest getRequest()
Gets the target request.

Returns:
the target request.

getFilterChain

public HttpFilterChain getFilterChain()
Gets the filter chain if any.

Returns:
the filter chain.

getName

public String getName()
Gets the attribute name.

Returns:
the attribute name.


Copyright © 2004 The Norther Organization. All rights reserved.