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

Brian Stansberry brian.stansberry at jboss.com
Wed May 9 14:15:10 EDT 2007


  User: bstansberry
  Date: 07/05/09 14:15:10

  Modified:    src/org/jboss/cache/factories  XmlConfigurationParser.java
  Log:
  [JBCACHE-934] Remove ChannelFactory JMX lookup from CacheImpl
  
  Revision  Changes    Path
  1.17      +7 -0      JBossCache/src/org/jboss/cache/factories/XmlConfigurationParser.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: XmlConfigurationParser.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/factories/XmlConfigurationParser.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -b -r1.16 -r1.17
  --- XmlConfigurationParser.java	3 Apr 2007 22:25:49 -0000	1.16
  +++ XmlConfigurationParser.java	9 May 2007 18:15:10 -0000	1.17
  @@ -97,6 +97,13 @@
         {
            attributes.stringAttribs.put("ExposeManagementStatistics", keepStats);
         }
  +      String multiplexerService = attributes.stringAttribs.remove("MultiplexerService");
  +      if (multiplexerService != null)
  +      {
  +         log.warn("XmlConfigurationParser does not support the deprecated " +
  +                "attribute MultiplexerService. Inject the multiplexer directly " +
  +                "using Configuration.getRuntimeConfig().setMuxChannelFactory()");
  +      }
   
         Configuration c = new Configuration();
         setValues(c, attributes.stringAttribs, false);
  
  
  



More information about the jboss-cvs-commits mailing list