Package org.rhq.core.clientapi.descriptor

Examples of org.rhq.core.clientapi.descriptor.PluginTransformer


        loadedPlugins = new ArrayList<Plugin>();
        metadataManager = new PluginMetadataManager();

        metadataManager.setDisabledResourceTypes(pluginContainerConfiguration.getDisabledResourceTypes());
        updateLoadedPlugins = new UpdateLoadedPlugins() {
            PluginTransformer transformer = new PluginTransformer();

            public void execute(PluginDescriptor pluginDescriptor, URL pluginURL) {
                Plugin plugin = transformer.toPlugin(pluginDescriptor, pluginURL);
                loadedPlugins.add(plugin);
            }
        };

        PluginFinder finder = pluginContainerConfiguration.getPluginFinder();
View Full Code Here

TOP

Related Classes of org.rhq.core.clientapi.descriptor.PluginTransformer

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.