Package org.rhq.core.domain.configuration

Examples of org.rhq.core.domain.configuration.DynamicConfigurationPropertyValue


        List<Object[]> results = query.getResultList();

        List<DynamicConfigurationPropertyValue> values =
            new ArrayList<DynamicConfigurationPropertyValue>(results.size());
        for (Object[] result : results) {
            DynamicConfigurationPropertyValue value = translate(result);
            values.add(value);
        }

        return values;
    }
View Full Code Here


        return values;
    }

    public DynamicConfigurationPropertyValue translate(Object[] results) {
        DynamicConfigurationPropertyValue value =
            new DynamicConfigurationPropertyValue((String) results[0], (String) results[1]);
        return value;
    }
View Full Code Here

TOP

Related Classes of org.rhq.core.domain.configuration.DynamicConfigurationPropertyValue

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.