Searched defs:baseURL (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/impl/
H A DCommonsHttpSolrServer.java173 * @param baseURL The URL of the Solr server. For example,
177 public CommonsHttpSolrServer(URL baseURL) argument
179 this(baseURL, null, new BinaryResponseParser(), false);
182 public CommonsHttpSolrServer(URL baseURL, HttpClient client) { argument
183 this(baseURL, client, new BinaryResponseParser(), false);
190 public CommonsHttpSolrServer(URL baseURL, HttpClient client, boolean useMultiPartPost) { argument
191 this(baseURL, client, new BinaryResponseParser(), useMultiPartPost);
198 public CommonsHttpSolrServer(URL baseURL, HttpClient client, ResponseParser parser, boolean useMultiPartPost) { argument
199 _baseURL = baseURL.toExternalForm();
502 public void setBaseURL(String baseURL) { argument
[all...]
H A DHttpSolrServer.java140 * @param baseURL
145 public HttpSolrServer(String baseURL) { argument
146 this(baseURL, null, new BinaryResponseParser());
149 public HttpSolrServer(String baseURL, HttpClient client) { argument
150 this(baseURL, client, new BinaryResponseParser());
153 public HttpSolrServer(String baseURL, HttpClient client, ResponseParser parser) { argument
154 this.baseUrl = baseURL;
400 public void setBaseURL(String baseURL) { argument
401 this.baseUrl = baseURL;

Completed in 14 milliseconds