Hi all, Given that several extension points may implement the same filter function defined in HtmlParseFilter, how can I prioritize their order such that my own filter implementation will always be called in the first place?
To be more specific, I have developed a function P2RHtmlParseFilter that implements the HtmlParseFilter class. My filter function is similar to JSParseFilter, which also implements the HtmlParseFilter class. In a test, the JSParseFilter was called prior to mine being called. While I have intentionally put the Id of my plugin before the JSParse plugin Id in nutch-site.xml, it is still JSParseFilter that was first called. Any suggestions? Thanks.

