XPathBuilder builder = XPathBuilder.xpath(xpath, resultType);
NamespacePrefix[] namespaces = getExpressionNameSpacePrefix(annotation);
if (namespaces != null) {
for (NamespacePrefix namespacePrefix : namespaces) {
builder = builder.namespace(namespacePrefix.prefix(), namespacePrefix.uri());
}
}
// Set the header name that we want the XPathBuilder to apply the XPath expression to
String headerName = getHeaderName(annotation);