Author: thorsten
Date: Wed Sep 17 04:35:35 2008
New Revision: 696255
URL: http://svn.apache.org/viewvc?rev=696255&view=rev
Log:
Moving class to a better package path - updating references
Modified:
forrest/trunk/whiteboard/dispatcher/java/org/apache/forrest/dispatcher/impl/XSLContract.java
forrest/trunk/whiteboard/dispatcher/testing/org/apache/forrest/dispatcher/TestContract.java
Modified:
forrest/trunk/whiteboard/dispatcher/java/org/apache/forrest/dispatcher/impl/XSLContract.java
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/dispatcher/java/org/apache/forrest/dispatcher/impl/XSLContract.java?rev=696255&r1=696254&r2=696255&view=diff
==============================================================================
---
forrest/trunk/whiteboard/dispatcher/java/org/apache/forrest/dispatcher/impl/XSLContract.java
(original)
+++
forrest/trunk/whiteboard/dispatcher/java/org/apache/forrest/dispatcher/impl/XSLContract.java
Wed Sep 17 04:35:35 2008
@@ -30,11 +30,11 @@
import javax.xml.transform.TransformerException;
import javax.xml.transform.stream.StreamResult;
-import org.apache.forrest.dispatcher.DispatcherException;
import org.apache.forrest.dispatcher.api.Contract;
+import org.apache.forrest.dispatcher.exception.DispatcherException;
-import org.apache.forrest.dispatcher.helper.Loggable;
-import org.apache.forrest.dispatcher.helper.XSLContractHelper;
+import org.apache.forrest.dispatcher.impl.helper.Loggable;
+import org.apache.forrest.dispatcher.impl.helper.XSLContractHelper;
public class XSLContract extends Loggable implements Contract {
@@ -68,9 +68,8 @@
+ "the contract. We cannot proceed without this.", e);
} catch (Exception e) {
throw new DispatcherException("Contract \"" + name
- + "\" has produced an exception"
- + "Could not setup the DOM Parser for"
- + "the contract. We cannot proceed without this.", e);
+ + "\" has produced an exception."
+ + "We cannot proceed without this.", e);
}
/*
* If no dataStream is present we need to create an empty xml doc to be
able
Modified:
forrest/trunk/whiteboard/dispatcher/testing/org/apache/forrest/dispatcher/TestContract.java
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/dispatcher/testing/org/apache/forrest/dispatcher/TestContract.java?rev=696255&r1=696254&r2=696255&view=diff
==============================================================================
---
forrest/trunk/whiteboard/dispatcher/testing/org/apache/forrest/dispatcher/TestContract.java
(original)
+++
forrest/trunk/whiteboard/dispatcher/testing/org/apache/forrest/dispatcher/TestContract.java
Wed Sep 17 04:35:35 2008
@@ -22,6 +22,7 @@
import java.util.HashMap;
import org.apache.forrest.dispatcher.api.Contract;
+import org.apache.forrest.dispatcher.exception.DispatcherException;
import org.apache.forrest.dispatcher.impl.XSLContract;
import org.xml.sax.InputSource;