User: kimptoc 
  Date: 01/09/01 12:50:32

  Modified:    src/main/org/jboss/management ContainerManagement.java
  Log:
  remove deprecated logging import, where possible, otherwise comment as needing 
replacement with log4j.... must find out how it is use.... would be good if the 
deprecation message pointed to an example to use...
  
  Revision  Changes    Path
  1.6       +9 -10     jboss/src/main/org/jboss/management/ContainerManagement.java
  
  Index: ContainerManagement.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/management/ContainerManagement.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ContainerManagement.java  2001/08/30 03:59:25     1.5
  +++ ContainerManagement.java  2001/09/01 19:50:32     1.6
  @@ -52,8 +52,7 @@
   import org.jboss.metadata.ConfigurationMetaData;
   import org.jboss.metadata.XmlLoadable;
   import org.jboss.metadata.XmlFileLoader;
  -import org.jboss.logging.Logger;
  -                                                        
  +
   /**
   *   A ContainerMgt is used as the long arm of a deployed EJB's container.
   *
  @@ -61,7 +60,7 @@
   *   @author <a href="mailto:[EMAIL PROTECTED]";>Marc Fleury</a>
   *   @author <a href="mailto:[EMAIL PROTECTED]";>Andreas Schaefer</a>
   *
  -*   @version $Revision: 1.5 $
  +*   @version $Revision: 1.6 $
   */
   public class ContainerManagement
     extends org.jboss.system.ServiceMBeanSupport
  @@ -79,17 +78,17 @@
      public ContainerManagement( Container pContainer ) {
         setContainer( pContainer );
      }
  -   
  +
      // Public --------------------------------------------------------
   
      private void setContainer( Container pContainer ) {
         mContainer = pContainer;
      }
  -   
  +
      public Container getContainer() {
         return mContainer;
      }
  -   
  +
      /**
      * Implements the abstract <code>getObjectName()</code> method in superclass
      * to return this service's name.
  @@ -106,7 +105,7 @@
         mName = name;
         return name;
      }
  -   
  +
      /**
      * Implements the abstract <code>getName()</code> method in superclass to
      * return the name of this object.
  @@ -116,19 +115,19 @@
      public String getName() {
         return "Container Management Proxy";
      }
  -   
  +
      /**
      * Implements the template method in superclass. This method stops all the
      * applications in this server.
      */
      public void stopService() {
      }
  -   
  +
      /**
      * Implements the template method in superclass. This method destroys all
      * the applications in this server and clears the deployments list.
      */
      public void destroyService() {
      }
  -   
  +
   }
  
  
  

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

Reply via email to