User: user57  
  Date: 02/01/02 20:00:52

  Modified:    src/main/org/jboss/ha/hasessionstate/server
                        HASessionStateServiceMBean.java
  Log:
   o migrated all components to a new JMX domain name model.  jboss.system
     is now where to core/spine components live.  moved all components that
     were in JBOSS-SYSTEM that did not move into a jboss.* domain into
     jboss (where the server is now registered).  The point was to limit the
     members of jboss.system to core bits only.
   o Created org.jboss.system.Server, which does the work of initialization
     that org.jboss.Main used to do.  Main now only parses the command line,
     sets up basic legecy properties and creates a Server instance.
   o Moved functionality of Shutdown (component not cl tool) into Server (
     which is bound as jboss.system:service=Server)
   o Moved more Runtime access from Info into Server.  Exposed memory info
     as attributes.
   o Logging a WARN everywhere that uses System.getProperty("jboss.system.home")
     as that should go away soon/eventually.
   o Initialized the invokerMap in the harmi impl to avoid NPE
   o Made getopt.jar a member of the lib/* dir instead of adding it to the
     run.jar and shutdown.jars each time.
   o Minor cosmetic changes along the way.
  
  Revision  Changes    Path
  1.4       +20 -29    
jbossmx/src/main/org/jboss/ha/hasessionstate/server/HASessionStateServiceMBean.java
  
  Index: HASessionStateServiceMBean.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jbossmx/src/main/org/jboss/ha/hasessionstate/server/HASessionStateServiceMBean.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- HASessionStateServiceMBean.java   2001/12/31 20:41:41     1.3
  +++ HASessionStateServiceMBean.java   2002/01/03 04:00:52     1.4
  @@ -8,46 +8,37 @@
   package org.jboss.ha.hasessionstate.server;
   
   /**
  - *   MBEAN interface for HASessionState service
  + * MBEAN interface for HASessionState service.
    *
  - *   @see HASessionState
  - *   @author [EMAIL PROTECTED]
  - *   @version $Revision: 1.3 $
  + * @see HASessionState
    *
  + * @author [EMAIL PROTECTED]
  + * @version $Revision: 1.4 $
  + *
    * <p><b>Revisions:</b><br>
    */
  -
   public interface HASessionStateServiceMBean
   {
  -   // Constants -----------------------------------------------------
  -   public static final String OBJECT_NAME = "JBOSS-SYSTEM:service=HASessionState";
  +   String OBJECT_NAME = "jboss:service=HASessionState";
   
  -   public String getJndiName();
  -   public void setJndiName(String newName);
  +   String getJndiName();
  +   void setJndiName(String newName);
   
  -   public String getSubPartitionProperties(); // i.e. JavaGroups properties
  -   public void setSubPartitionProperties(String newProps);
  +   String getSubPartitionProperties(); // i.e. JavaGroups properties
  +   void setSubPartitionProperties(String newProps);
   
  -   public String getMainHaPartitionName ();
  -   public void setMainHaPartitionName (String name);
  +   String getMainHaPartitionName();
  +   void setMainHaPartitionName(String name);
      
  -   public long getSubPartitionSize ();
  -   public void setSubPartitionSize (long newSize);
  +   long getSubPartitionSize();
  +   void setSubPartitionSize(long newSize);
      
  -   public long getSubPartitionCreationWaitTime ();  
  -   public void setSubPartitionCreationWaitTime (long newWaitTime);
  +   long getSubPartitionCreationWaitTime();  
  +   void setSubPartitionCreationWaitTime(long newWaitTime);
      
  -   public long getBeanCleaningDelay ();
  -   public void setBeanCleaningDelay (long newDelay);
  +   long getBeanCleaningDelay();
  +   void setBeanCleaningDelay(long newDelay);
      
  -   public void setTopologyComputerClassName (String newName);
  -   public String getTopologyComputerClassName ();
  -   
  +   void setTopologyComputerClassName(String newName);
  +   String getTopologyComputerClassName();  
   }
  -
  -
  -
  -    
  -
  -    
  -
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to