List of usage examples for org.apache.solr.util.plugin PluginInfoInitialized interface-usage
From source file com.basho.yokozuna.handler.EntropyData.java
/** * This class provides handler logic to iterate over the entropy data * stored in the index. This data can be used to build a hash tree to * detect entropy. */ public class EntropyData extends RequestHandlerBase implements PluginInfoInitialized {
From source file com.indoqa.solr.spatial.clustering.SpatialClusteringComponent.java
public class SpatialClusteringComponent extends SearchComponent implements PluginInfoInitialized { private static final String FIELD_NAME_ID = "fieldId"; private static final String FIELD_NAME_LON = "fieldLon"; private static final String FIELD_NAME_LAT = "fieldLat";
From source file com.o19s.solr.swan.highlight.SwanHighlightComponent.java
public class SwanHighlightComponent extends HighlightComponent implements PluginInfoInitialized, SolrCoreAware { private PluginInfo info = PluginInfo.EMPTY_INFO; @Override public void inform(SolrCore core) { SolrHighlighter highlighter;
From source file com.search.MySearchHandler.java
/** * * Refer SOLR-281 * */ public class MySearchHandler extends RequestHandlerBase implements SolrCoreAware, PluginInfoInitialized {
From source file com.search.MySearchHandlerTest.java
/** * * Refer SOLR-281 * */ public class MySearchHandlerTest extends RequestHandlerBase implements SolrCoreAware, PluginInfoInitialized {
From source file com.tamingtext.qa.PassageRankingComponent.java
/** * Given a SpanQuery, get windows around the matches and rank those results */ public class PassageRankingComponent extends SearchComponent implements PluginInfoInitialized, SolrCoreAware, QAParams { private transient static Logger log = LoggerFactory.getLogger(PassageRankingComponent.class);
From source file com.zemanta.solrcassandrabridge.CassandraBridgeComponent.java
public class CassandraBridgeComponent extends SearchComponent implements PluginInfoInitialized, SolrCoreAware { public static final String COMPONENT_NAME = "solrcassandrabridge"; private PluginInfo info = PluginInfo.EMPTY_INFO; public static Logger log = LoggerFactory.getLogger(CassandraBridgeComponent.class); private String key_field_name; // from solrconfig.xml -- which key will be used to map between solr and cassandra
From source file de.qaware.chronix.solr.query.ChronixQueryHandler.java
/**
* The date range query handler to convert date expression and
* delegate the query to the default search handler
*
* @author f.lautenschlager
*/