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

Shane Bryzak Shane_Bryzak at symantec.com
Wed Dec 13 00:08:53 EST 2006


  User: sbryzak2
  Date: 06/12/13 00:08:53

  Modified:    src/main/org/jboss/seam/security/authenticator 
                        Authenticator.java
  Log:
  added security manager dependencies
  
  Revision  Changes    Path
  1.16      +3 -4      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.15
  retrieving revision 1.16
  diff -u -b -r1.15 -r1.16
  --- Authenticator.java	4 Dec 2006 01:21:52 -0000	1.15
  +++ Authenticator.java	13 Dec 2006 05:08:53 -0000	1.16
  @@ -1,18 +1,17 @@
   package org.jboss.seam.security.authenticator;
   
  -import static org.jboss.seam.annotations.Install.BUILT_IN;
  -
   import java.util.ArrayList;
   import java.util.List;
   
   import org.jboss.seam.Component;
   import org.jboss.seam.ScopeType;
   import org.jboss.seam.Seam;
  +import static org.jboss.seam.annotations.Install.BUILT_IN;
   import org.jboss.seam.annotations.Install;
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.contexts.Contexts;
  -import org.jboss.seam.security.Identity;
   import org.jboss.seam.security.AuthenticationException;
  +import org.jboss.seam.security.Identity;
   import org.jboss.seam.security.UsernamePasswordToken;
   import org.jboss.seam.security.adapter.AuthenticationAdapter;
   import org.jboss.seam.util.Reflections;
  @@ -23,7 +22,7 @@
    * @author Shane Bryzak
    */
   @Name("org.jboss.seam.security.authenticator")
  - at Install(value=false, precedence=BUILT_IN)
  + at Install(value=false, precedence=BUILT_IN, dependencies = "org.jboss.seam.securityManager")
   public abstract class Authenticator
   {
     private List<AuthenticationAdapter> adapters = new ArrayList<AuthenticationAdapter>();
  
  
  



More information about the jboss-cvs-commits mailing list