How to specify the order of filters in AEM?
We define several filters like this:
@8220494
@SlingServletFilter(
scope = { SlingServletFilterScope.REQUEST },
pattern = "/bin/api/.*",
methods = { "GET", "POST" }
)
@Designate(ocd = CorrelationLoggingFilter.Config.class)
public class CorrelationLoggingFilter implements Filter {
The question is, how do we specify the order the filters are executed in?
Is this documented anywhere?