All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pageseeder.flint.solr.index.SolrIndex Maven / Gradle / Ivy

There is a newer version: 9.2.7
Show newest version
package org.pageseeder.flint.solr.index;

import org.pageseeder.flint.Index;
import org.pageseeder.flint.solr.SolrFlintException;

public class SolrIndex extends Index {

  private final SolrIndexIO _io;

  public SolrIndex(String name, String catalog) throws SolrFlintException {
    super(name, catalog);
    this._io = new SolrIndexIO(this);
  }

  @Override
  public SolrIndexIO getIndexIO() {
    return this._io;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy