Package org.switchyard.config.model.implementation.bpel.v1

Examples of org.switchyard.config.model.implementation.bpel.v1.V1BPELComponentImplementationModel


            }
        } else if (name.equals(ComponentModel.COMPONENT)) {
            return new V1ComponentModel(config, desc);
        } else if (name.startsWith(ComponentImplementationModel.IMPLEMENTATION)) {
            if (name.equals(IMPLEMENTATION_BPEL)) {
                return new V1BPELComponentImplementationModel(config, getDescriptor());
            }
            return new V1ComponentImplementationModel(config, desc);
        } else if (name.startsWith(InterfaceModel.INTERFACE)) {
            Configuration config_parent = config.getParent();
            if (config_parent != null) {
View Full Code Here

TOP

Related Classes of org.switchyard.config.model.implementation.bpel.v1.V1BPELComponentImplementationModel

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.