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

Shane Bryzak Shane_Bryzak at symantec.com
Fri Feb 9 10:36:11 EST 2007


  User: sbryzak2
  Date: 07/02/09 10:36:11

  Modified:    src/main/org/jboss/seam/security   Identity.java
                        NotLoggedInException.java
  Log:
  JBSEAM-801
  
  Revision  Changes    Path
  1.57      +3 -2      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.56
  retrieving revision 1.57
  diff -u -b -r1.56 -r1.57
  --- Identity.java	9 Feb 2007 03:44:22 -0000	1.56
  +++ Identity.java	9 Feb 2007 15:36:11 -0000	1.57
  @@ -166,8 +166,9 @@
            if ( !isLoggedIn() )
            {
               Events.instance().raiseEvent("org.jboss.seam.notLoggedIn");
  -            throw new NotLoggedInException(String.format(
  +            log.debug(String.format(
                   "Error evaluating expression [%s] - User not logged in", expr));
  +            throw new NotLoggedInException();
            }
            else
            {
  
  
  
  1.4       +0 -5      jboss-seam/src/main/org/jboss/seam/security/NotLoggedInException.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NotLoggedInException.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/NotLoggedInException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- NotLoggedInException.java	6 Feb 2007 16:27:03 -0000	1.3
  +++ NotLoggedInException.java	9 Feb 2007 15:36:11 -0000	1.4
  @@ -14,9 +14,4 @@
     {
        super();
     }
  -  
  -  public NotLoggedInException(String message)
  -  {
  -     super(message);
  -  }
   }
  
  
  



More information about the jboss-cvs-commits mailing list