
org.liveSense.service.solr.api.EmbeddedOSGiClientSolrConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.liveSense.service.solr Show documentation
Show all versions of org.liveSense.service.solr Show documentation
A Solr embeded server service available or references a remote server. (Derived from Sakai Nakumara - https://github.com/ieb/solr)
The newest version!
package org.liveSense.service.solr.api;
import java.io.IOException;
import javax.xml.parsers.ParserConfigurationException;
import org.apache.solr.core.SolrConfig;
import org.apache.solr.core.SolrResourceLoader;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
public class EmbeddedOSGiClientSolrConfig extends SolrConfig {
public EmbeddedOSGiClientSolrConfig(SolrResourceLoader loader, String name, InputSource is)
throws ParserConfigurationException, IOException, SAXException {
super(loader, name, is);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy