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

Brian Stansberry brian.stansberry at jboss.com
Fri May 11 12:48:08 EDT 2007


  User: bstansberry
  Date: 07/05/11 12:48:08

  Modified:    src/org/jboss/cache/config  Configuration.java
  Log:
  [JBCACHE-1055] Remove Configuration's serviceName property
  
  Revision  Changes    Path
  1.45      +0 -20     JBossCache/src/org/jboss/cache/config/Configuration.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Configuration.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/config/Configuration.java,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -b -r1.44 -r1.45
  --- Configuration.java	9 May 2007 18:23:24 -0000	1.44
  +++ Configuration.java	11 May 2007 16:48:08 -0000	1.45
  @@ -123,7 +123,6 @@
      private long syncReplTimeout = 15000;
      private CacheMode cacheMode = CacheMode.LOCAL;
      private boolean inactiveOnStartup = false;
  -   private String serviceName;
      private long initialStateRetrievalTimeout = 10000;
      private IsolationLevel isolationLevel = IsolationLevel.REPEATABLE_READ;
      @Dynamic
  @@ -437,17 +436,6 @@
         this.usingMultiplexer = usingMultiplexer;
      }
   
  -   /**
  -    * Sets the JMX service name to bind the cache to.
  -    *
  -    * @param serviceName
  -    */
  -   public void setServiceName(String serviceName)
  -   {
  -      testImmutability("serviceName");
  -      this.serviceName = serviceName;
  -   }
  -
      // ------------------------------------------------------------------------------------------------------------
      //   GETTERS
      // ------------------------------------------------------------------------------------------------------------
  @@ -584,14 +572,6 @@
         return muxStackName;
      }
   
  -   /**
  -    * Retrieves the JMX service name to bind the cache to, if any.
  -    */
  -   public String getServiceName()
  -   {
  -      return serviceName;
  -   }
  -
      public synchronized RuntimeConfig getRuntimeConfig()
      {
         if (runtimeConfig == null)
  
  
  



More information about the jboss-cvs-commits mailing list