Beispiel #1
0
  public byte[] asByteArray(Object xml, Object xslt, Map<String, String> properties)
      throws Exception {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    XsltUtil.transform(xml, xslt, baos, properties);

    return baos.toByteArray();
  }
Beispiel #2
0
 public Node asXml(Object xml, Object xslt) throws Exception {
   Node node = XmlUtil.newXml();
   XsltUtil.transform(xml, xslt, node);
   return node;
 }
Beispiel #3
0
  public byte[] asByteArray(Object xml, Object xslt) throws Exception {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    XsltUtil.transform(xml, xslt, baos);

    return baos.toByteArray();
  }
Beispiel #4
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;
 }