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

Gavin King gavin.king at jboss.com
Fri Nov 24 18:15:19 EST 2006


  User: gavin   
  Date: 06/11/24 18:15:19

  Modified:    src/main/org/jboss/seam/security/authenticator  
                        Authenticator.java ProviderAuthenticator.java
  Log:
   JBSEAM-293 component precedence
  
  Revision  Changes    Path
  1.14      +3 -1      jboss-seam/src/main/org/jboss/seam/security/authenticator/Authenticator.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Authenticator.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/authenticator/Authenticator.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -b -r1.13 -r1.14
  --- Authenticator.java	18 Nov 2006 00:38:23 -0000	1.13
  +++ Authenticator.java	24 Nov 2006 23:15:19 -0000	1.14
  @@ -1,5 +1,7 @@
   package org.jboss.seam.security.authenticator;
   
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
  +
   import java.util.ArrayList;
   import java.util.List;
   
  @@ -21,7 +23,7 @@
    * @author Shane Bryzak
    */
   @Name("org.jboss.seam.security.authenticator")
  - at Install(false)
  + at Install(value=false, precedence=BUILT_IN)
   public abstract class Authenticator
   {
     private List<AuthenticationAdapter> adapters = new ArrayList<AuthenticationAdapter>();
  
  
  
  1.10      +4 -2      jboss-seam/src/main/org/jboss/seam/security/authenticator/ProviderAuthenticator.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ProviderAuthenticator.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/authenticator/ProviderAuthenticator.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- ProviderAuthenticator.java	18 Nov 2006 00:38:23 -0000	1.9
  +++ ProviderAuthenticator.java	24 Nov 2006 23:15:19 -0000	1.10
  @@ -1,9 +1,11 @@
   package org.jboss.seam.security.authenticator;
   
  +import static org.jboss.seam.ScopeType.APPLICATION;
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
  +
   import java.util.ArrayList;
   import java.util.List;
   
  -import static org.jboss.seam.ScopeType.APPLICATION;
   import org.jboss.seam.Component;
   import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
  @@ -20,7 +22,7 @@
    */
   @Name("org.jboss.seam.security.authenticator")
   @Scope(APPLICATION)
  - at Install(false)
  + at Install(value=false, precedence=BUILT_IN)
   public class ProviderAuthenticator extends Authenticator
   {
     private List<Object> providers = new ArrayList<Object> ();
  
  
  



More information about the jboss-cvs-commits mailing list