Examples of XQueryMediator


Examples of org.apache.synapse.mediators.xquery.XQueryMediator

        if (!(m instanceof XQueryMediator)) {
            return null;
        }

        List<ConfigurationObject> providers = new ArrayList<ConfigurationObject>();
        XQueryMediator xqueryMediator = (XQueryMediator) m;
        Value key = xqueryMediator.getQueryKey();
        if (key.getKeyValue() != null) {
            addProvider(new ConfigurationObject(ConfigurationObject.TYPE_ENTRY,
                                                key.getKeyValue()), providers);
        }

        List<MediatorVariable> variables = xqueryMediator.getVariables();
        if (variables != null) {
            for (MediatorVariable var : variables) {
                if (var instanceof MediatorCustomVariable) {
                    String varKey = ((MediatorCustomVariable) var).getRegKey();
                    if (varKey != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.