Examples of EDBIndexException


Examples of org.openengsb.core.edbi.api.EDBIndexException

    public void removeIndex(Index<?> index) throws EDBIndexException {
        if (!indexExists(index.getName())) {
            throw new IndexNotFoundException("Index " + index.getName() + " does not exist");
        }
        if (!(index instanceof JdbcIndex)) {
            throw new EDBIndexException("Can only handle Index instances of type JdbcIndex, was " + index.getClass());
        }

        schemaMapper.drop((JdbcIndex) index);
        deleteIndeInformation(index);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.