Package org.switchyard.transform.config.model

Examples of org.switchyard.transform.config.model.DozerFileEntryModel


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

TOP

Related Classes of org.switchyard.transform.config.model.DozerFileEntryModel

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.