Package org.rhq.core.gui.configuration.propset

Examples of org.rhq.core.gui.configuration.propset.ConfigurationSet


            Configuration configuration = configs.get(resourceId);
            ConfigurationSetMember configurationSetMember = new ConfigurationSetMember(label, configuration);
            configurationSetMembers.add(configurationSetMember);
        }
        ConfigurationDefinition definition = getConfigurationDefinition(subject, group);
        ConfigurationSet configurationSet = new ConfigurationSet(definition, configurationSetMembers);
        long elapsedTime = System.currentTimeMillis() - startTime;
        LOG.info("Calculated group config in " + elapsedTime + " ms.");
        return configurationSet;
    }
View Full Code Here


            Configuration configuration = configs.get(resourceId);
            ConfigurationSetMember configurationSetMember = new ConfigurationSetMember(label, configuration);
            configurationSetMembers.add(configurationSetMember);
        }
        ConfigurationDefinition definition = getConfigurationDefinition(subject, group);
        ConfigurationSet configurationSet = new ConfigurationSet(definition, configurationSetMembers);
        return configurationSet;
    }
View Full Code Here

                configuration.getMap("OpenMapOfSimples").put(new PropertySimple("PROCESSOR_CORES", "4"));
            ConfigurationSetMember memberInfo =
                    new ConfigurationSetMember(LABELS[GROUP_SIZE % LABELS.length], configuration);
            members.add(memberInfo);
        }
        this.configurationSet = new ConfigurationSet(this.configurationDefinition, members);
        // Unwrap the Hibernate proxy objects, which Facelets appears not to be able to handle.
        this.properties = new ArrayList<Property>(this.configuration.getProperties());
    }
View Full Code Here

TOP

Related Classes of org.rhq.core.gui.configuration.propset.ConfigurationSet

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.