Package org.rhq.core.pc.plugin

Examples of org.rhq.core.pc.plugin.BlacklistedException


    public <T> T getDiscoveryComponentProxy(ResourceType type, ResourceDiscoveryComponent component, long timeout,
        Class<T> componentInterface, ResourceContainer parentResourceContainer) throws PluginContainerException,
        BlacklistedException {

        if (isResourceTypeBlacklisted(type)) {
            throw new BlacklistedException("Discovery component for resource type [" + type + "] has been blacklisted");
        }

        try {

            ClassLoader pluginClassLoader = pluginComponentFactory.getDiscoveryComponentClassLoader(
View Full Code Here

TOP

Related Classes of org.rhq.core.pc.plugin.BlacklistedException

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.