Interface QueryProcessor
- All Known Implementing Classes:
FieldNameQueryProcessor
public interface QueryProcessor
A query processor can modify a requested query before executing it against the index.
Query processors are executed in specified order ("before" / "after" attribute in contribution).
-
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(FulltextSearchQuery fulltextSearchQuery) Anything can be done with the requested query object.
-
Method Details
-
process
Anything can be done with the requested query object.- Parameters:
fulltextSearchQuery
- query object to handle.
-