Renamed XSLT to XslTransformer.
[utils] / crawler / kiss / src / org / wamblee / crawler / kiss / notification / MailNotifier.java
index 536135b28508288f65f42bf82f3ea3089584d66c..8d2ccf97422186687ff2bcac47deccbca941c359 100644 (file)
@@ -16,7 +16,7 @@ import org.apache.commons.mail.EmailException;
 import org.apache.commons.mail.HtmlEmail;
 import org.dom4j.Element;
 import org.wamblee.xml.ClasspathUriResolver;
-import org.wamblee.xml.XSLT;
+import org.wamblee.xml.XslTransformer;
 
 /**
  * A notifier that uses SMTP to notify users by mail.
@@ -112,7 +112,7 @@ public class MailNotifier implements Notifier {
     private String transformReport(Element aReport, String aXslt)
             throws IOException, TransformerException {
         String reportXmlText = aReport.asXML();
-        XSLT xsltProcessor = new XSLT(new ClasspathUriResolver());
+        XslTransformer xsltProcessor = new XslTransformer(new ClasspathUriResolver());
         return xsltProcessor.textTransform(reportXmlText.getBytes(), xsltProcessor.resolve(aXslt));
     }
 }