private XSSFilterRule getFilterRule()

in src/main/java/org/apache/sling/xss/impl/XSSFilterImpl.java [339:347]


    private XSSFilterRule getFilterRule(final ProtectionContext context) {
        if (context == null) {
            throw new NullPointerException("context");
        }
        if (context == ProtectionContext.HTML_HTML_CONTENT) {
            return this.htmlHtmlContext;
        }
        return this.plainHtmlContext;
    }