User: janb    
  Date: 02/03/22 02:19:09

  Modified:    jetty/src/main/org/jboss/jetty Jetty.java
  Log:
  Set both Principal and Credential to null when finished handling a request.
  
  Revision  Changes    Path
  1.44      +4 -3      contrib/jetty/src/main/org/jboss/jetty/Jetty.java
  
  Index: Jetty.java
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/jetty/src/main/org/jboss/jetty/Jetty.java,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -r1.43 -r1.44
  --- Jetty.java        17 Mar 2002 19:02:25 -0000      1.43
  +++ Jetty.java        22 Mar 2002 10:19:08 -0000      1.44
  @@ -5,7 +5,7 @@
    * See terms of license at gnu.org.
    */
   
  -// $Id: Jetty.java,v 1.43 2002/03/17 19:02:25 jules_gosnell Exp $
  +// $Id: Jetty.java,v 1.44 2002/03/22 10:19:08 janb Exp $
   
   // A Jetty HttpServer with the interface expected by JBoss'
   // J2EEDeployer...
  @@ -50,7 +50,7 @@
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Julian Gosnell</a>
    * @author  <a href="mailto:[EMAIL PROTECTED]";>Andreas Schaefer</a>.
  - * @version $Revision: 1.43 $
  + * @version $Revision: 1.44 $
    *
    * <p><b>Revisions:</b>
    *
  @@ -531,7 +531,8 @@
       }
       finally
       {
  -      SecurityAssociation.setPrincipal(null);
  +        SecurityAssociation.setPrincipal(null);
  +        SecurityAssociation.setCredential(null);
       }
     }
   }
  
  
  

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

Reply via email to