[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/notifications ...
Elias Ross
genman at noderunner.net
Wed Feb 7 17:06:51 EST 2007
User: genman
Date: 07/02/07 17:06:51
Modified: tests/functional/org/jboss/cache/notifications
RemoteCacheListenerTest.java CacheListenerTest.java
Log:
JBCACHE-969 - Move transaction classes to org.jboss.cache.transaction
Revision Changes Path
1.14 +1 -1 JBossCache/tests/functional/org/jboss/cache/notifications/RemoteCacheListenerTest.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: RemoteCacheListenerTest.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/notifications/RemoteCacheListenerTest.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- RemoteCacheListenerTest.java 11 Jan 2007 13:49:22 -0000 1.13
+++ RemoteCacheListenerTest.java 7 Feb 2007 22:06:51 -0000 1.14
@@ -60,7 +60,7 @@
c.setCacheMode(Configuration.CacheMode.REPL_SYNC);
c.setIsolationLevel(IsolationLevel.REPEATABLE_READ);
if (optLocking) c.setNodeLockingScheme(Configuration.NodeLockingScheme.OPTIMISTIC);
- c.setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
+ c.setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
c.setFetchInMemoryState(false);
// we need this because notifications emitted by the notification interceptor are done during the commit call.
1.17 +1 -1 JBossCache/tests/functional/org/jboss/cache/notifications/CacheListenerTest.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: CacheListenerTest.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/notifications/CacheListenerTest.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -b -r1.16 -r1.17
--- CacheListenerTest.java 11 Jan 2007 13:49:22 -0000 1.16
+++ CacheListenerTest.java 7 Feb 2007 22:06:51 -0000 1.17
@@ -53,7 +53,7 @@
c.setCacheMode(Configuration.CacheMode.LOCAL);
c.setIsolationLevel(IsolationLevel.REPEATABLE_READ);
if (optLocking) c.setNodeLockingScheme(Configuration.NodeLockingScheme.OPTIMISTIC);
- c.setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
+ c.setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
cache = DefaultCacheFactory.getInstance().createCache(c);
tm = cache.getConfiguration().getRuntimeConfig().getTransactionManager();
eventLog.events.clear();
More information about the jboss-cvs-commits
mailing list