}
});
String propertyListExpression = String.format("/components/scr:component[@name='%s']/property", componentName);
XPathExpression propertyList = xPath.compile(propertyListExpression);
XPathExpression propertyName = xPath.compile("@name");
XPathExpression propertyValue = xPath.compile("@value");
NodeList nodes = (NodeList) propertyList.evaluate(dom, XPathConstants.NODESET);
for (int i = 0; i < nodes.getLength(); i++) {
Node node = nodes.item(i);
result.put((String) propertyName.evaluate(node, XPathConstants.STRING), (String) propertyValue.evaluate(node, XPathConstants.STRING));