Interface Filter

  • All Known Implementing Classes:
    CompressionFilter, MethodOverrideFilter, OpenSearchFilter

    @Deprecated
    public interface Filter
    Deprecated.
    Legacy AEM 6.x API.
    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.
    • Method Detail

      • filter

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