User: d_jencks
  Date: 02/04/14 19:48:52

  Modified:    src/main/org/jboss/mx/server ServerConstants.java
  Log:
  Changed to use UnifiedLoaderRepository and UnifiedClassLoader from jbossmx.  Removed 
ServiceLibraries, UnifiedClassLoader, and MBeanClassLoader from jboss-system
  
  Revision  Changes    Path
  1.9       +9 -3      jmx/src/main/org/jboss/mx/server/ServerConstants.java
  
  Index: ServerConstants.java
  ===================================================================
  RCS file: /cvsroot/jboss/jmx/src/main/org/jboss/mx/server/ServerConstants.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ServerConstants.java      14 Apr 2002 15:28:07 -0000      1.8
  +++ ServerConstants.java      15 Apr 2002 02:48:52 -0000      1.9
  @@ -18,7 +18,7 @@
    *
    * @author  <a href="mailto:[EMAIL PROTECTED]";>Juha Lindfors</a>.
    * @author  <a href="mailto:[EMAIL PROTECTED]";>Adrian Brock</a>.
  - * @version $Revision: 1.8 $
  + * @version $Revision: 1.9 $
    *   
    */
   public interface ServerConstants
  @@ -85,8 +85,8 @@
      final static String DEFAULT_REQUIRED_MODELMBEAN_CLASS  = 
"org.jboss.mx.modelmbean.XMBean";
      
      final static String LOADER_REPOSITORY_CLASS_PROPERTY   = 
"jbossmx.loader.repository.class";
  -   final static String DEFAULT_LOADER_REPOSITORY_CLASS    = 
"org.jboss.mx.loading.BasicLoaderRepository";
  -   //final static String DEFAULT_LOADER_REPOSITORY_CLASS    = 
"org.jboss.mx.loading.UnifiedLoaderRepository";
  +   //final static String DEFAULT_LOADER_REPOSITORY_CLASS    = 
"org.jboss.mx.loading.BasicLoaderRepository";
  +   final static String DEFAULT_LOADER_REPOSITORY_CLASS    = 
"org.jboss.mx.loading.UnifiedLoaderRepository";
      final static String UNIFIED_LOADER_REPOSITORY_CLASS    = 
"org.jboss.mx.loading.UnifiedLoaderRepository";
      
      final static String MBEAN_REGISTRY_CLASS_PROPERTY      = 
"jbossmx.mbean.registry.class";
  @@ -96,6 +96,12 @@
      final static String DEFAULT_MBEAN_SERVER_CLASS         = 
"org.jboss.mx.server.MBeanServerImpl";
      
      final static String OPTIMIZE_REFLECTED_DISPATCHER      = 
"jbossmx.optimized.dispatcher";
  +
  +   //added for UnifiedLoaderRepository becoming an mbean that issues notifications
  +   final static String DEFAULT_LOADER_NAME = JMI_DOMAIN + 
":service=LoaderRepository,name=Default";
  +
  +   final static String CLASSLOADER_ADDED = "jboss.mx.classloader.added";
  +   final static String CLASS_REMOVED = "jboss.mx.class.removed";
   }
         
   
  
  
  

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

Reply via email to