[seam-commits] Seam SVN: r8618 - trunk/examples/itext/src/org/jboss/seam/example/pdf/test.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Wed Aug 6 14:37:54 EDT 2008
Author: norman.richards at jboss.com
Date: 2008-08-06 14:37:54 -0400 (Wed, 06 Aug 2008)
New Revision: 8618
Modified:
trunk/examples/itext/src/org/jboss/seam/example/pdf/test/DocumentTests.java
Log:
JBSEAM-3220
Modified: trunk/examples/itext/src/org/jboss/seam/example/pdf/test/DocumentTests.java
===================================================================
--- trunk/examples/itext/src/org/jboss/seam/example/pdf/test/DocumentTests.java 2008-08-06 18:37:03 UTC (rev 8617)
+++ trunk/examples/itext/src/org/jboss/seam/example/pdf/test/DocumentTests.java 2008-08-06 18:37:54 UTC (rev 8618)
@@ -40,7 +40,7 @@
String docId = (String) getValue("#{docId}");
assert docId != null;
- DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.pdf.documentStore}");
+ DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.document.documentStore}");
assert store.idIsValid(docId);
@@ -54,7 +54,7 @@
String docId = (String) getValue("#{docId}");
assert docId != null;
- DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.pdf.documentStore}");
+ DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.document.documentStore}");
assert !store.idIsValid(docId);
}
}.run();
@@ -65,7 +65,7 @@
String docId = (String) getValue("#{docId}");
assert docId != null;
- DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.pdf.documentStore}");
+ DocumentStore store = (DocumentStore) getValue("#{org.jboss.seam.document.documentStore}");
assert store.idIsValid(docId);
DocumentData data = store.getDocumentData(docId);
More information about the seam-commits
mailing list