[jboss-cvs] jboss-seam/src/main/org/jboss/seam/security/provider ...
Shane Bryzak
Shane_Bryzak at symantec.com
Sun Dec 3 20:23:59 EST 2006
User: sbryzak2
Date: 06/12/03 20:23:59
Modified: src/main/org/jboss/seam/security/provider
AuthenticationProvider.java
Log:
fixed invalid import
Revision Changes Path
1.8 +2 -2 jboss-seam/src/main/org/jboss/seam/security/provider/AuthenticationProvider.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: AuthenticationProvider.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/security/provider/AuthenticationProvider.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- AuthenticationProvider.java 4 Dec 2006 01:21:53 -0000 1.7
+++ AuthenticationProvider.java 4 Dec 2006 01:23:59 -0000 1.8
@@ -1,6 +1,6 @@
package org.jboss.seam.security.provider;
-import org.jboss.seam.security.Authentication;
+import org.jboss.seam.security.Identity;
import org.jboss.seam.security.AuthenticationException;
/**
@@ -8,6 +8,6 @@
*/
public interface AuthenticationProvider
{
- Authentication authenticate(Authentication authentication)
+ Identity authenticate(Identity authentication)
throws AuthenticationException;
}
More information about the jboss-cvs-commits
mailing list