Package org.apache.tuscany.model.assembly

Examples of org.apache.tuscany.model.assembly.ConfiguredProperty.initialize()


        // Derive the configured properties from the properties on the component info
        for (Property property : componentType.getProperties()) {
            ConfiguredProperty configuredProperty = configuredPropertiesMap.get(property.getName());
            if (configuredProperty != null) {
                configuredProperty.setProperty(property);
                configuredProperty.initialize(modelContext);
            }
        }
        for (ConfiguredProperty configuredProperty : configuredProperties) {
            if (configuredProperty.getProperty()==null) {
                throw new AssemblyInitializationException("Undefined property ["+configuredProperty.getName()+"]");
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.