[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/options/cachemodelocal ...
Elias Ross
genman at noderunner.net
Wed Feb 7 17:06:56 EST 2007
User: genman
Date: 07/02/07 17:06:56
Modified: tests/functional/org/jboss/cache/options/cachemodelocal
CacheModeLocalTestBase.java
Log:
JBCACHE-969 - Move transaction classes to org.jboss.cache.transaction
Revision Changes Path
1.11 +2 -2 JBossCache/tests/functional/org/jboss/cache/options/cachemodelocal/CacheModeLocalTestBase.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: CacheModeLocalTestBase.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/options/cachemodelocal/CacheModeLocalTestBase.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- CacheModeLocalTestBase.java 11 Jan 2007 13:49:22 -0000 1.10
+++ CacheModeLocalTestBase.java 7 Feb 2007 22:06:56 -0000 1.11
@@ -49,7 +49,7 @@
cache1 = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
cache1.getConfiguration().setClusterName("test");
cache1.getConfiguration().setInitialStateRetrievalTimeout(1000);
- cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
+ cache1.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
cache1.getConfiguration().setNodeLockingScheme(nodeLockingScheme);
cache1.getConfiguration().setCacheMode(cacheMode);
cache1.start();
@@ -57,7 +57,7 @@
cache2 = (CacheImpl) DefaultCacheFactory.getInstance().createCache(false);
cache2.getConfiguration().setClusterName("test");
cache2.getConfiguration().setInitialStateRetrievalTimeout(1000);
- cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
+ cache2.getConfiguration().setTransactionManagerLookupClass("org.jboss.cache.transaction.DummyTransactionManagerLookup");
cache2.getConfiguration().setNodeLockingScheme(nodeLockingScheme);
cache2.getConfiguration().setCacheMode(cacheMode);
cache2.start();
More information about the jboss-cvs-commits
mailing list