Package org.switchyard.config.model.selector.v1

Examples of org.switchyard.config.model.selector.v1.V1RegexOperationSelectorModel


            return new V1EsbInterfaceModel(config, desc);
        } else if (name.startsWith(OperationSelectorModel.OPERATION_SELECTOR)) {
            if (name.equals(OperationSelectorModel.OPERATION_SELECTOR)) {
                return new V1StaticOperationSelectorModel(config, desc);
            } else if (name.endsWith(XPathOperationSelectorModel.XPATH)) {
                return new V1XPathOperationSelectorModel(config, desc);
            } else if (name.endsWith(RegexOperationSelectorModel.REGEX)) {
                return new V1RegexOperationSelectorModel(config, desc);
            } else if (name.endsWith(JavaOperationSelectorModel.JAVA)) {
                return new V1JavaOperationSelectorModel(config, desc);
            }
View Full Code Here

TOP

Related Classes of org.switchyard.config.model.selector.v1.V1RegexOperationSelectorModel

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.