Esempio n. 1
0
 public Node asXml(Object xml, Object xslt) throws Exception {
   Node node = XmlUtil.newXml();
   XsltUtil.transform(xml, xslt, node);
   return node;
 }
Esempio n. 2
0
 public Node asXml(Object xml, Object xslt, Map<String, String> properties) throws Exception {
   Node node = XmlUtil.newXml();
   XsltUtil.transform(xml, xslt, node, properties);
   return node;
 }