List of usage examples for org.apache.solr.common.params RequiredSolrParams RequiredSolrParams
public RequiredSolrParams(SolrParams params)
From source file:org.jahia.services.search.facets.SimpleJahiaJcrFacets.java
License:Open Source License
public SimpleJahiaJcrFacets(IndexSearcher searcher, OpenBitSet docs, SolrParams params, SearchIndex index, Session session, NamespaceMappings nsMappings) { this.searcher = searcher; this.base = this.docs = docs; this.params = params; this.required = new RequiredSolrParams(params); // this.rb = rb; this.resolver = NamePathResolverImpl.create(index.getNamespaceMappings()); this.defaultAnalyzer = index.getTextAnalyzer(); this.session = session; this.nsMappings = nsMappings; }