Package org.switchyard.config.model.selector

Examples of org.switchyard.config.model.selector.JavaOperationSelectorModel


            return null;
        }
       
        OperationSelectorFactory<T> operationSelectorFactory = OperationSelectorFactory.getOperationSelectorFactory(getTargetClass());
        if (model instanceof JavaOperationSelectorModel) {
            JavaOperationSelectorModel javaModel = JavaOperationSelectorModel.class.cast(model);
            return operationSelectorFactory.newOperationSelector((Class<OperationSelector<T>>)Classes.forName(javaModel.getClazz()), javaModel);
        } else {
            return operationSelectorFactory.newOperationSelector(operationSelectorFactory.getDefaultOperationSelectorClass(), model);
        }
    }
View Full Code Here

TOP

Related Classes of org.switchyard.config.model.selector.JavaOperationSelectorModel

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.