com.s24.search.solr.analysis.jdbc.JdbcReaderFactoryParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of solr-jdbc Show documentation
Show all versions of solr-jdbc Show documentation
A simple Solr JDBC connection holder that can be injected by JNDI.
package com.s24.search.solr.analysis.jdbc;
/**
* Additional Parameters for configuring JDBC based readers.
*
* @author Shopping24 GmbH, Torsten Bøgh Köster (@tboeghk)
*/
public interface JdbcReaderFactoryParams {
/**
* Parameter: Name of data source in JNDI.
*/
String DATASOURCE = "dataSource";
/**
* Parameter: SQL to load synonyms.
*/
String SQL = "sql";
/**
* Parameter: Ignore a missing database?.
*/
String IGNORE = "ignoreMissingDatabase";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy