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

Gavin King gavin.king at jboss.com
Wed Dec 13 00:19:40 EST 2006


  User: gavin   
  Date: 06/12/13 00:19:40

  Modified:    src/main/org/jboss/seam/security  Identity.java
  Log:
  precedence
  
  Revision  Changes    Path
  1.4       +4 -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.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Identity.java	13 Dec 2006 05:08:53 -0000	1.3
  +++ Identity.java	13 Dec 2006 05:19:40 -0000	1.4
  @@ -1,9 +1,11 @@
   package org.jboss.seam.security;
   
  +import static org.jboss.seam.ScopeType.SESSION;
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
  +
   import java.io.Serializable;
   import java.security.Principal;
   
  -import static org.jboss.seam.ScopeType.SESSION;
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.annotations.Install;
  @@ -13,7 +15,7 @@
   
   @Name("org.jboss.seam.security.identity")
   @Scope(SESSION)
  - at Install(dependencies = "org.jboss.seam.securityManager")
  + at Install(precedence=BUILT_IN, dependencies = "org.jboss.seam.securityManager")
   public abstract class Identity implements Principal, Serializable
   {
     protected boolean authenticated;
  
  
  



More information about the jboss-cvs-commits mailing list