Interface SolrQueryPostProcessor
-
@Deprecated(since="5.7") public interface SolrQueryPostProcessorDeprecated.Since 5.7, use a FacetSearchListener instead.APi defining a SOLR query post processor. It provides a direct access to the query right before performing search on solr's index. There could be multiple post-processors that are configured for theSolrQueryConverterimplementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description org.apache.solr.client.solrj.SolrQueryprocess(org.apache.solr.client.solrj.SolrQuery query, SearchQuery solrSearchQuery)Deprecated.Processes theSolrQueryobject according to some custom business logic.
-
-
-
Method Detail
-
process
org.apache.solr.client.solrj.SolrQuery process(org.apache.solr.client.solrj.SolrQuery query, SearchQuery solrSearchQuery)Deprecated.Processes theSolrQueryobject according to some custom business logic.- Parameters:
query- -SolrQuerythat is being processedsolrSearchQuery- -SearchQuerythe search data from the user request- Returns:
SolrQuery- the outcome of the post-processing
-
-