Exemplo n.º 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();
  }
Exemplo n.º 2
0
 public Node asXml(Object xml, Object xslt) throws Exception {
   Node node = XmlUtil.newXml();
   XsltUtil.transform(xml, xslt, node);
   return node;
 }
Exemplo n.º 3
0
  public byte[] asByteArray(Object xml, Object xslt) throws Exception {
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    XsltUtil.transform(xml, xslt, baos);

    return baos.toByteArray();
  }
Exemplo n.º 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;
 }