User: starksm 
  Date: 02/04/13 11:27:19

  Modified:    src/main/org/jboss/ejb EntityContainer.java
  Log:
  Cleanup the shutdown of the cache and pool.
  Remove the JMS notification messages from the AbstractInstanceCache.
  
  Revision  Changes    Path
  1.76      +5 -1      jboss/src/main/org/jboss/ejb/EntityContainer.java
  
  Index: EntityContainer.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/EntityContainer.java,v
  retrieving revision 1.75
  retrieving revision 1.76
  diff -u -r1.75 -r1.76
  --- EntityContainer.java      12 Apr 2002 19:30:41 -0000      1.75
  +++ EntityContainer.java      13 Apr 2002 18:27:19 -0000      1.76
  @@ -61,7 +61,7 @@
   * @author <a href="mailto:[EMAIL PROTECTED]";>Daniel OConnor</a>
   * @author <a href="[EMAIL PROTECTED]">Bill Burke</a>
   * @author <a href="mailto:[EMAIL PROTECTED]";>Andreas Schaefer</a>
  -* @version $Revision: 1.75 $
  +* @version $Revision: 1.76 $
   *
   * <p><b>Revisions:</b>
   *
  @@ -291,6 +291,7 @@
      
      public void create() throws Exception
      {
  +      log.trace("Creating");
         // Associate thread with classloader
         ClassLoader oldCl = Thread.currentThread().getContextClassLoader();
         Thread.currentThread().setContextClassLoader(getClassLoader());
  @@ -347,6 +348,7 @@
      
      public void start() throws Exception
      {
  +      log.trace("Starting");
         // Associate thread with classloader
         ClassLoader oldCl = Thread.currentThread().getContextClassLoader();
         Thread.currentThread().setContextClassLoader(getClassLoader());
  @@ -386,6 +388,7 @@
   
      public void stop()
      {
  +      log.trace("Stopping");
         // Associate thread with classloader
         ClassLoader oldCl = Thread.currentThread().getContextClassLoader();
         Thread.currentThread().setContextClassLoader(getClassLoader());
  @@ -429,6 +432,7 @@
      
      public void destroy()
      {
  +      log.trace("Destroying");
         // Associate thread with classloader
         ClassLoader oldCl = Thread.currentThread().getContextClassLoader();
         Thread.currentThread().setContextClassLoader(getClassLoader());
  
  
  

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

Reply via email to