org.apache.abdera.protocol.server
Interface Filter

All Known Implementing Classes:
CompressionFilter, CustomProvider.SimpleFilter, MethodOverrideFilter, OpenSearchFilter

public interface Filter

Filters are invoked by AbderaServlet immediately before passing the request off to the Provider for processing The filters use a model generally identical to that of Servlet Filters, with each filter forwarding the request on to the next filter in the chain.

Author:
jasnell

Method Summary
 ResponseContext filter(RequestContext request, FilterChain chain)
          Process the filter request.
 

Method Detail

filter

ResponseContext filter(RequestContext request,
                       FilterChain chain)
Process the filter request. The filter must call chain.next(request) to pass the request on to the next filter or the provider.



Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.