Package org.switchyard.validate.config.model

Examples of org.switchyard.validate.config.model.FileEntryModel


     * @param desc the Descriptor
     */
    public V1SchemaFilesModel(Configuration config, Descriptor desc) {
        super(config, desc);
        for (Configuration entryConfig : config.getChildrenStartsWith(FileEntryModel.ENTRY)) {
            FileEntryModel entry = (FileEntryModel)readModel(entryConfig);
            if (entry != null) {
                _entries.add(entry);
            }
        }
        setModelChildrenOrder(FileEntryModel.ENTRY);
View Full Code Here


     * @param desc the Descriptor
     */
    public V1SchemaCatalogsModel(Configuration config, Descriptor desc) {
        super(config, desc);
        for (Configuration entryConfig : config.getChildrenStartsWith(FileEntryModel.ENTRY)) {
            FileEntryModel entry = (FileEntryModel)readModel(entryConfig);
            if (entry != null) {
                _entries.add(entry);
            }
        }
        setModelChildrenOrder(FileEntryModel.ENTRY);
View Full Code Here

TOP

Related Classes of org.switchyard.validate.config.model.FileEntryModel

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.