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

Gavin King gavin.king at jboss.com
Wed Oct 25 11:14:37 EDT 2006


  User: gavin   
  Date: 06/10/25 11:14:37

  Modified:    src/main/org/jboss/seam/security/authenticator  
                        Authenticator.java ProviderAuthenticator.java
  Log:
  many minor
  
  Revision  Changes    Path
  1.11      +0 -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.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- Authenticator.java	11 Oct 2006 03:09:08 -0000	1.10
  +++ Authenticator.java	25 Oct 2006 15:14:37 -0000	1.11
  @@ -75,7 +75,6 @@
         {
         }
       }
  -    this.adapters = adapters;
     }
   
     public void beginRequest()
  
  
  
  1.7       +2 -4      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.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- ProviderAuthenticator.java	11 Oct 2006 03:09:08 -0000	1.6
  +++ ProviderAuthenticator.java	25 Oct 2006 15:14:37 -0000	1.7
  @@ -21,9 +21,6 @@
   @Scope(APPLICATION)
   public class ProviderAuthenticator extends Authenticator
   {
  -  /**
  -   *
  -   */
     private List<Object> providers = new ArrayList<Object> ();
   
     /**
  @@ -32,6 +29,7 @@
      * @return Authentication
      * @throws AuthenticationException
      */
  +  @Override
     public Authentication doAuthentication(Authentication authentication)
         throws AuthenticationException
     {
  @@ -73,7 +71,7 @@
             try
             {
               provider = Reflections.classForName(provider.toString()).newInstance();
  -            providers.add( (AuthenticationProvider) provider);
  +            providers.add(provider);
             }
             catch (Exception ex)
             {
  
  
  



More information about the jboss-cvs-commits mailing list