Package org.switchyard.component.common.knowledge.expression

Examples of org.switchyard.component.common.knowledge.expression.ContextMap


        Map<String, Object> variables = new HashMap<String, Object>();
        if (expressionVariables != null) {
            variables.putAll(expressionVariables);
        }
        // these always take precedence!
        variables.put(CONTEXT, new ContextMap(message.getContext(), Scope.MESSAGE));
        variables.put(MESSAGE, message);
        return expression.run(variables);
    }
View Full Code Here

TOP

Related Classes of org.switchyard.component.common.knowledge.expression.ContextMap

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.