Paco Avila wrote:
I need to know how can I get a list of configured textFilterClasses programatically :)
This is actually implementation detail and not available through the JCR API. However if you cast your workspace instance to a org.apache.jackrabbit.core.WorkspaceImpl you get access to a public method getConfig() which returns a WorkspaceConfig. from there you can get the SearchConfig and its parameters.
Please note that this is not part of the public Jackrabbit API and may change at any point in time.
regards marcel