Custom servlet not getting resolved
I'm developing a custom servlet to prevent users not logged into our site from downloading certain content in the DAM. I can see my servlet active in components but I don't see it resolving in the Servlet Resolver Test (system/console/servletresolver) Thanks for any advice.
(service = Servlet.class, immediate = true,
property = {
ServletResolverConstants.SLING_SERVLET_PATHS + "=/content/dam/advisor/*",
ServletResolverConstants.SLING_SERVLET_EXTENSIONS + "=pdf,jpg,jpeg",
ServletResolverConstants.SLING_SERVLET_SELECTORS + "=download",
ServletResolverConstants.SLING_SERVLET_METHODS + "=GET",
"service.ranking:Integer=100"
}
)
public class AnonymousAccessServlet extends SlingAllMethodsServlet {