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

  Modified:    src/main/org/jboss/test JBossTestServices.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.9       +5 -4      jbosstest/src/main/org/jboss/test/JBossTestServices.java
  
  Index: JBossTestServices.java
  ===================================================================
  RCS file: /cvsroot/jboss/jbosstest/src/main/org/jboss/test/JBossTestServices.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- JBossTestServices.java    2001/10/17 19:35:58     1.8
  +++ JBossTestServices.java    2002/01/03 04:01:01     1.9
  @@ -4,6 +4,7 @@
    * Distributable under LGPL license.
    * See terms of license at gnu.org.
    */
  +
   package org.jboss.test;
   
   import java.io.File;
  @@ -45,14 +46,14 @@
    *
    * @author    <a href="mailto:[EMAIL PROTECTED]";>David Jencks</a>
    * @author    <a href="mailto:[EMAIL PROTECTED]";>Christoph G. Jung</a>
  - * @version   $Revision: 1.8 $
  + * @version   $Revision: 1.9 $
    */
   public class JBossTestServices
   {
      
      // Constants -----------------------------------------------------
  -   private final static String serviceDeployerName = 
"JBOSS-SYSTEM:service=ServiceDeployer";
  -   private final static String j2eeDeployerName = "J2EE:service=J2eeDeployer";
  +   private final static String serviceDeployerName = 
"jboss.system:service=ServiceDeployer";
  +   private final static String j2eeDeployerName = "jboss.j2ee:service=J2eeDeployer";
      
      private final static int DEFAULT_THREADCOUNT = 10;
      private final static int DEFAULT_ITERATIONCOUNT = 1000;
  @@ -338,7 +339,7 @@
      
      void flushAuthCache() throws Exception
      {
  -      ObjectName jaasMgr = new ObjectName("Security:name=JaasSecurityManager");
  +      ObjectName jaasMgr = new 
ObjectName("jboss.security:name=JaasSecurityManager");
         Object[] params =
         {"other"};
         String[] signature =
  
  
  

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

Reply via email to