org.norther.tammi.spray.filter.chain
Interface FilterChainListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
AbstractConnectorRequest, AbstractConnectorResponse, AbstractProtocolRequest, AbstractProtocolResponse, AuthenticatedRequest, ConnectorRequest, ConnectorResponse, DispatchedRequest, DispatchedResponse, HeadersRequest, HttpRMIRequest, HttpRMIResponse, HttpServletRequestDecorator, HttpServletRequestWrapper, HttpServletResponseDecorator, HttpServletResponseWrapper, MultipartRequest, ProtocolRequest, ProtocolResponse, RelayRequest, RelayResponse, SavedRequest, ServletRequestWrapper, ServletResponseWrapper, TemplateResponse, TemplateResponse, TerminalRequest, TerminalResponse

public interface FilterChainListener
extends EventListener

Requests and responses implementing the FilterChainListener interface will be notified when they are filtered for the first time within a filter chain and when the filter chain is completed. They are notified by the filter chain instance.

Version:
$Id: FilterChainListener.java,v 1.5 2009/09/28 15:08:28 cvsimp Exp $
Author:
Ilkka Priha

Method Summary
 void completed(FilterChainEvent event)
          Notifies the object that a filter chain has completed.
 void filtered(FilterChainEvent event)
          Notifies the object that it has been activated within a filter chain.
 

Method Detail

filtered

void filtered(FilterChainEvent event)
Notifies the object that it has been activated within a filter chain.

Parameters:
event - the filter chain event.

completed

void completed(FilterChainEvent event)
Notifies the object that a filter chain has completed.

Parameters:
event - the filter chain event.


Copyright © 2004 The Norther Organization. All rights reserved.