Package lcmc.crm.ui.resource

Examples of lcmc.crm.ui.resource.ResourceAgentClassInfo


    /** Updates available services. */
    private void updateAvailableServices() {
        LOG.debug("updateAvailableServices: start");
        treeMenuController.removeChildren(availableServicesNode);
        for (final String crmClass : CRM_CLASSES) {
            final ResourceAgentClassInfo raci = resourceAgentClassInfoProvider.get();
            raci.init(crmClass, this);
            classInfoMap.put(crmClass, raci);
            final DefaultMutableTreeNode classNode = treeMenuController.createMenuItem(availableServicesNode, raci);
            for (final ResourceAgent resourceAgent : crmXml.getServices(crmClass)) {
                final AvailableServiceInfo availableService = availableServiceInfoProvider.get();
                availableService.init(resourceAgent, this);
View Full Code Here

TOP

Related Classes of lcmc.crm.ui.resource.ResourceAgentClassInfo

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.