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

All Superinterfaces:
EventListener
All Known Implementing Classes:
AbstractConnectorRequest, AbstractConnectorResponse, AbstractProtocolRequest, AbstractProtocolResponse, AuthenticatedRequest, BaseProtocolRequest, ConnectorRequest, ConnectorResponse, DispatchedRequest, DispatchedResponse, HttpProtocolRequest, HttpProtocolResponse, HttpRelayRequest, HttpRelayResponse, HttpRMIRequest, HttpRMIResponse, HttpServletRequestDecorator, HttpServletRequestWrapper, HttpServletResponseDecorator, HttpServletResponseWrapper, 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.

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.