Package org.modeshape.jcr.spi.index.provider

Examples of org.modeshape.jcr.spi.index.provider.NoSuchProviderException


    @Override
    public void unregister( String providerName ) throws RepositoryException {
        IndexProvider provider = providers.remove(providerName);
        if (provider == null) {
            throw new NoSuchProviderException(JcrI18n.indexProviderDoesNotExist.text(providerName, repository.name()));
        }
        if (initialized.get()) {
            provider.shutdown();
        }
View Full Code Here

TOP

Related Classes of org.modeshape.jcr.spi.index.provider.NoSuchProviderException

Copyright © 2018 www.massapicom. 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.