[jboss-cvs] jboss-seam/src/main/org/jboss/seam/security ...

Shane Bryzak sbryzak at redhat.com
Sun Nov 25 17:34:37 EST 2007


  User: sbryzak2
  Date: 07/11/25 17:34:37

  Modified:    src/main/org/jboss/seam/security  Identity.java
  Log:
  JBSEAM-2200
  
  Revision  Changes    Path
  1.111     +7 -0      jboss-seam/src/main/org/jboss/seam/security/Identity.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Identity.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/Identity.java,v
  retrieving revision 1.110
  retrieving revision 1.111
  diff -u -b -r1.110 -r1.111
  --- Identity.java	21 Nov 2007 03:05:48 -0000	1.110
  +++ Identity.java	25 Nov 2007 22:34:37 -0000	1.111
  @@ -269,6 +269,10 @@
      {
         unAuthenticate();
         preAuthenticationRoles.clear();
  +      
  +      // TODO - Deprecated, remove for next major release
  +      if (Events.exists()) Events.instance().raiseEvent("org.jboss.seam.preAuthenticate");      
  +      
         if (Events.exists()) Events.instance().raiseEvent(EVENT_PRE_AUTHENTICATE);
      }   
      
  @@ -298,6 +302,9 @@
         
         password = null;
   
  +      // TODO - Deprecated, remove for next major release
  +      if (Events.exists()) Events.instance().raiseEvent("org.jboss.seam.postAuthenticate");
  +      
         if (Events.exists()) Events.instance().raiseEvent(EVENT_POST_AUTHENTICATE, this);
      }
      
  
  
  



More information about the jboss-cvs-commits mailing list