xpath.evaluate(".//ns1:value/text()", outboundParamNode, XPathConstants.NODESET);
if (1 < valueList.getLength()) {
throw new XPathExpressionException("Within <inbound-parameter> only one <value> child is allowed");
}
String valueStr = valueList.item(0).getNodeValue().trim();
flowCallBuilder.outboundParameter(nameStr, valueStr);
}
}
}
// </editor-fold>