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

Shane Bryzak Shane_Bryzak at symantec.com
Sun Jul 30 23:22:23 EDT 2006


  User: sbryzak2
  Date: 06/07/30 23:22:23

  Added:       src/main/org/jboss/seam/security/authenticator 
                        Authenticator.java
  Log:
  Re-added Authenticator interface
  
  Revision  Changes    Path
  1.6       +2 -2      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: Authenticator.java
  diff -N Authenticator.java
  --- /dev/null	1 Jan 1970 00:00:00 -0000
  +++ Authenticator.java	31 Jul 2006 03:22:23 -0000	1.6
  @@ -0,0 +1,15 @@
  +package org.jboss.seam.security.authenticator;
  +
  +import org.jboss.seam.security.AuthenticationException;
  +import org.jboss.seam.security.Authentication;
  +
  +/**
  + *
  + *
  + * @author Shane Bryzak
  + */
  +public interface Authenticator
  +{
  +  Authentication authenticate(Authentication authentication)
  +      throws AuthenticationException;
  +}
  
  
  



More information about the jboss-cvs-commits mailing list