de.tblsoft.solr.pipeline.bean.SolrUrl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-cmd-utils Show documentation
Show all versions of solr-cmd-utils Show documentation
A command line util for solr.
The newest version!
package de.tblsoft.solr.pipeline.bean;
import java.util.List;
import java.util.Map;
/**
* Created by tblsoft on 23.07.17.
*/
public class SolrUrl {
public SolrUrl(Map properties) {
this(properties, null);
}
public SolrUrl(Map properties, String key) {
if(key == null){
key = "solrUrl";
}
Map solrUrl = (Map) properties.get(key);
this.baseUrl = (String) solrUrl.get("baseUrl");
this.coreName = (String) solrUrl.get("coreName");
this.handler = (String) solrUrl.get("handler");
this.query = (List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy