blob: aba94cbf7de1f09ba63526551507c3c403fc77be [file] [log] [blame]
/***********************************************************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH. All rights reserved. This program and the accompanying
* materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: August Georg Schmidt (brox IT Solutions GmbH) - initial API and implementation
**********************************************************************************************************************/
package org.eclipse.smila.search.plugin;
import org.eclipse.smila.search.index.IndexAdmin;
import org.eclipse.smila.search.index.IndexConnection;
import org.eclipse.smila.search.index.IndexException;
/**
* @author GSchmidt
*
* To change this generated comment go to Window>Preferences>Java>Code Generation>Code and Comments
*/
public interface IIndexAccess {
IndexAdmin getIndexAdmin();
IndexConnection getIndexConnection(String indexName) throws IndexException;
}