[jboss-cvs] JBossCache/src/org/jboss/cache/jmx ...

Manik Surtani manik at jboss.org
Thu Jun 14 11:30:16 EDT 2007


  User: msurtani
  Date: 07/06/14 11:30:16

  Modified:    src/org/jboss/cache/jmx  CacheJmxWrapper.java
  Log:
  JBCACHE-1109
  
  Revision  Changes    Path
  1.27      +23 -25    JBossCache/src/org/jboss/cache/jmx/CacheJmxWrapper.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheJmxWrapper.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/jmx/CacheJmxWrapper.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -b -r1.26 -r1.27
  --- CacheJmxWrapper.java	4 Jun 2007 22:56:16 -0000	1.26
  +++ CacheJmxWrapper.java	14 Jun 2007 15:30:16 -0000	1.27
  @@ -26,8 +26,8 @@
   import org.jboss.cache.Cache;
   import org.jboss.cache.CacheException;
   import org.jboss.cache.CacheImpl;
  -import org.jboss.cache.DefaultCacheFactory;
   import org.jboss.cache.CacheStatus;
  +import org.jboss.cache.DefaultCacheFactory;
   import org.jboss.cache.config.BuddyReplicationConfig;
   import org.jboss.cache.config.CacheLoaderConfig;
   import org.jboss.cache.config.Configuration;
  @@ -53,7 +53,6 @@
   import javax.management.NotificationListener;
   import javax.management.ObjectName;
   import javax.transaction.TransactionManager;
  -
   import java.util.List;
   import java.util.concurrent.atomic.AtomicInteger;
   
  @@ -63,7 +62,7 @@
    * {@link CacheImpl}.
    *
    * @author <a href="brian.stansberry at jboss.com">Brian Stansberry</a>
  - * @version $Revision: 1.26 $
  + * @version $Revision: 1.27 $
    */
   public class CacheJmxWrapper
         extends NotificationBroadcasterSupport
  @@ -254,9 +253,9 @@
         return getConfiguration().isFetchInMemoryState();
      }
   
  -   public long getInitialStateRetrievalTimeout()
  +   public long getStateRetrievalTimeout()
      {
  -      return getConfiguration().getInitialStateRetrievalTimeout();
  +      return getConfiguration().getStateRetrievalTimeout();
      }
   
      public String getIsolationLevel()
  @@ -432,9 +431,9 @@
         getConfiguration().setInactiveOnStartup(inactiveOnStartup);
      }
   
  -   public void setInitialStateRetrievalTimeout(long timeout)
  +   public void setStateRetrievalTimeout(long timeout)
      {
  -      getConfiguration().setInitialStateRetrievalTimeout(timeout);
  +      getConfiguration().setStateRetrievalTimeout(timeout);
      }
   
      public void setIsolationLevel(String level)
  @@ -517,7 +516,6 @@
         getConfiguration().setUseReplQueue(flag);
      }
   
  -   
      // --------------------------------------------------------------  Lifecycle
   
      public void create() throws CacheException
  
  
  



More information about the jboss-cvs-commits mailing list