Class RawParameterHelper
java.lang.Object
org.apache.camel.support.component.RawParameterHelper
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
resolveRawParameterValues
(org.apache.camel.CamelContext camelContext, Map<String, Object> parameters) Traverses the given parameters, and resolve any parameter values which uses the RAW token syntax: key=RAW(value).
-
Method Details
-
resolveRawParameterValues
public static void resolveRawParameterValues(org.apache.camel.CamelContext camelContext, Map<String, Object> parameters) Traverses the given parameters, and resolve any parameter values which uses the RAW token syntax: key=RAW(value). This method will then remove the RAW tokens, and replace the content of the value, with just the value. The value can refer to a simple expression using $simple{xxx} syntax which allows to refer to passwords defined as ENV variables etc.- Parameters:
camelContext
- the camel contextparameters
- the uri parameters
-