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

Norman Richards norman.richards at jboss.com
Fri Nov 17 19:38:23 EST 2006


  User: nrichards
  Date: 06/11/17 19:38:23

  Modified:    src/main/org/jboss/seam/security/authenticator  
                        Authenticator.java ProviderAuthenticator.java
  Log:
  JBSEAM-484: add @Install annotation, rework initialization code
  
  Revision  Changes    Path
  1.13      +2 -0      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.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- Authenticator.java	17 Nov 2006 02:35:46 -0000	1.12
  +++ Authenticator.java	18 Nov 2006 00:38:23 -0000	1.13
  @@ -6,6 +6,7 @@
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.Seam;
  +import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.contexts.Contexts;
   import org.jboss.seam.security.Authentication;
  @@ -20,6 +21,7 @@
    * @author Shane Bryzak
    */
   @Name("org.jboss.seam.security.authenticator")
  + at Install(false)
   public abstract class Authenticator
   {
     private List<AuthenticationAdapter> adapters = new ArrayList<AuthenticationAdapter>();
  
  
  
  1.9       +2 -0      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.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- ProviderAuthenticator.java	17 Nov 2006 17:17:42 -0000	1.8
  +++ ProviderAuthenticator.java	18 Nov 2006 00:38:23 -0000	1.9
  @@ -5,6 +5,7 @@
   
   import static org.jboss.seam.ScopeType.APPLICATION;
   import org.jboss.seam.Component;
  +import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
   import org.jboss.seam.security.Authentication;
  @@ -19,6 +20,7 @@
    */
   @Name("org.jboss.seam.security.authenticator")
   @Scope(APPLICATION)
  + at Install(false)
   public class ProviderAuthenticator extends Authenticator
   {
     private List<Object> providers = new ArrayList<Object> ();
  
  
  



More information about the jboss-cvs-commits mailing list