Package org.rhq.core.pluginapi.upgrade

Examples of org.rhq.core.pluginapi.upgrade.ResourceUpgradeCallback


     */
    public <T extends ResourceComponent<?>> ResourceUpgradeCallback<T> getResourceUpgradeCallback(String pluginName,
        String callbackClassName) throws PluginContainerException {

        // same classloader as plugin discovery component would use - with null parent, its just the plugin classloader
        ResourceUpgradeCallback callback = instantiateInDiscoveryComponentClassLoader(pluginName, callbackClassName,
            ResourceUpgradeCallback.class);

        if (log.isDebugEnabled()) {
            log.debug("Created resource upgrade callback [" + callbackClassName + "] for plugin [" + pluginName + ']');
        }
View Full Code Here

TOP

Related Classes of org.rhq.core.pluginapi.upgrade.ResourceUpgradeCallback

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.