Example usage for org.apache.solr.common.params RequiredSolrParams RequiredSolrParams

List of usage examples for org.apache.solr.common.params RequiredSolrParams RequiredSolrParams

Introduction

In this page you can find the example usage for org.apache.solr.common.params RequiredSolrParams RequiredSolrParams.

Prototype

public RequiredSolrParams(SolrParams params) 

Source Link

Usage

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;
}