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

  Modified:    varia/src/main/org/jboss/tm/plugins/tyrex
                        TransactionManagerServiceMBean.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       +4 -6      
contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TransactionManagerServiceMBean.java
  
  Index: TransactionManagerServiceMBean.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/contrib/varia/src/main/org/jboss/tm/plugins/tyrex/TransactionManagerServiceMBean.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransactionManagerServiceMBean.java       2001/10/20 21:01:43     1.3
  +++ TransactionManagerServiceMBean.java       2002/01/03 04:00:55     1.4
  @@ -15,17 +15,15 @@
    *
    *   @see TransactionManagerService
    *   @author <a href="mailto:[EMAIL PROTECTED]";>Anatoly Akkerman</a>
  - *   @version $Revision: 1.3 $
  + *   @version $Revision: 1.4 $
    */
   public interface TransactionManagerServiceMBean
      extends org.jboss.system.ServiceMBean
   {
  -   // Constants -----------------------------------------------------
  -   public static final String OBJECT_NAME = ":service=TransactionManager";
  +   String OBJECT_NAME = "jboss:service=TransactionManager";
   
  -   // Public --------------------------------------------------------
  -   public String getConfigFileName();
  +   String getConfigFileName();
   
  -   public void setConfigFileName(String name) throws IOException;
  +   void setConfigFileName(String name) throws IOException;
   }
   
  
  
  

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

Reply via email to