Examples of PluginDependencyGraph


Examples of org.rhq.core.clientapi.agent.metadata.PluginDependencyGraph

        PluginDescriptor descriptor_customjmx = loadPluginDescriptor(DESCRIPTOR_CUSTOMJMX);
        assertCustomJmxTypes();

        outputAllTypes();

        PluginDependencyGraph graph = new PluginDependencyGraph();
        AgentPluginDescriptorUtil.addPluginToDependencyGraph(graph, descriptor_jmx);
        AgentPluginDescriptorUtil.addPluginToDependencyGraph(graph, descriptor_tomcat);
        AgentPluginDescriptorUtil.addPluginToDependencyGraph(graph, descriptor_jbossas);
        AgentPluginDescriptorUtil.addPluginToDependencyGraph(graph, descriptor_hibernate);
        AgentPluginDescriptorUtil.addPluginToDependencyGraph(graph, descriptor_customjmx);
        assert graph.isComplete(null);

        // these are not extended via embedded extension model
        assert this.metadataManager.getEmbeddedExtensions(descriptor_jmx.getName()).isEmpty();
        assert this.metadataManager.getEmbeddedExtensions(descriptor_jbossas.getName()).isEmpty();
        assert this.metadataManager.getEmbeddedExtensions(descriptor_hibernate.getName()).isEmpty();
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.