List of usage examples for org.apache.solr.client.solrj.impl HttpSolrClient subclass-usage
From source file com.ibm.watson.developer_cloud.professor_languo.ingestion.indexing.WatsonSolrClient.java
/** * An {@link HttpSolrClient} that performs authentication to the Watson Solr Server given user * credentials * */ public class WatsonSolrClient extends HttpSolrClient {
From source file com.ibm.watson.developer_cloud.retrieve_and_rank.v1.RetrieveAndRankSolrClient.java
/** An {@link HttpSolrClient} for interacting with Watson Solr clusters. */ public class RetrieveAndRankSolrClient extends HttpSolrClient { private static final long serialVersionUID = -5787191484698145448L; private static final String SOLR_PATH = "solr";
From source file com.ilscipio.scipio.solr.util.ScipioHttpSolrClient.java
/**
* Special HttpSolrClient implementation that adds missing support for basic auth in the client.
* <p>
* Without this, we would be forced to rewrite all queries because basic auth can only be set
* in SolrRequest, which is not supported through the HttpSolrClient.commit/add/deleteByQuery/etc methods.
* <p>