[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/interceptors ...

Manik Surtani msurtani at jboss.com
Thu Aug 17 17:57:59 EDT 2006


  User: msurtani
  Date: 06/08/17 17:57:59

  Modified:    tests/functional/org/jboss/cache/interceptors 
                        EvictionInterceptorTest.java
  Log:
  Habanero stabilisation efforts - getCacheSPI() method
  
  Revision  Changes    Path
  1.5       +6 -6      JBossCache/tests/functional/org/jboss/cache/interceptors/EvictionInterceptorTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EvictionInterceptorTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/interceptors/EvictionInterceptorTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- EvictionInterceptorTest.java	20 Jul 2006 09:03:53 -0000	1.4
  +++ EvictionInterceptorTest.java	17 Aug 2006 21:57:58 -0000	1.5
  @@ -68,27 +68,27 @@
         // make the interceptor chain (separate from the TreeCache object.
   
         interceptor = new CacheMgmtInterceptor();
  -      interceptor.setCache(cache.getSPI());
  +      interceptor.setCache(cache.getCacheSPI());
   
         TxInterceptor ti = new TxInterceptor();
  -      ti.setCache(cache.getSPI());
  +      ti.setCache(cache.getCacheSPI());
         interceptor.setNext(ti);
   
         UnlockInterceptor ui = new UnlockInterceptor();
  -      ui.setCache(cache.getSPI());
  +      ui.setCache(cache.getCacheSPI());
         ti.setNext(ui);
   
         PessimisticLockInterceptor pli = new PessimisticLockInterceptor();
  -      pli.setCache(cache.getSPI());
  +      pli.setCache(cache.getCacheSPI());
         ui.setNext(pli);
   
         EvictionInterceptor ei = new EvictionInterceptor();
  -      ei.setCache(cache.getSPI());
  +      ei.setCache(cache.getCacheSPI());
         ei.setRegionManager(regionManager);
         pli.setNext(ei);
   
         CallInterceptor ci = new CallInterceptor();
  -      ci.setCache(cache.getSPI());
  +      ci.setCache(cache.getCacheSPI());
         ei.setNext(ci);
   
         cache.getConfiguration().setCacheMode("LOCAL");
  
  
  



More information about the jboss-cvs-commits mailing list