PropertyConfigurator config = new PropertyConfigurator();
config.configure(cache, "META-INF/local-passivation-service.xml"); // read in generic local xml
cache.setCacheMode("REPL_SYNC");
cache.setTransactionManagerLookupClass("org.jboss.cache.DummyTransactionManagerLookup");
cache.setCacheLoaderConfiguration(getSingleCacheLoaderConfig(true, "/", DummyInMemoryCacheLoader.class.getName(), null, false, true, false, false));
cache.startService();
return cache;
}
public void tearDown() throws Exception
{