ソースを参照

Added correct @author and @version tags, more Javadocs to follow

Ray Krueger 21 年 前
コミット
da7895087b

+ 3 - 2
core/src/main/java/org/acegisecurity/providers/jaas/AuthorityGranter.java

@@ -5,8 +5,9 @@ import java.security.Principal;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public interface AuthorityGranter {
     public String grant(Principal principal);

+ 4 - 3
core/src/main/java/org/acegisecurity/providers/jaas/JAASAuthenticationCallbackHandler.java

@@ -2,7 +2,6 @@ package net.sf.acegisecurity.providers.jaas;
 
 import net.sf.acegisecurity.Authentication;
 
-import javax.security.auth.callback.CallbackHandler;
 import javax.security.auth.callback.Callback;
 import javax.security.auth.callback.UnsupportedCallbackException;
 import java.io.IOException;
@@ -10,11 +9,13 @@ import java.io.IOException;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public interface JAASAuthenticationCallbackHandler {
     void setAuthentication(Authentication auth);
+
     void handle(Callback callback) throws IOException, UnsupportedCallbackException;
 
 }

+ 3 - 2
core/src/main/java/org/acegisecurity/providers/jaas/JAASGrantedAuthority.java

@@ -7,8 +7,9 @@ import java.security.Principal;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASGrantedAuthority extends GrantedAuthorityImpl {
 

+ 3 - 3
core/src/main/java/org/acegisecurity/providers/jaas/JAASNameCallbackHandler.java

@@ -1,7 +1,6 @@
 package net.sf.acegisecurity.providers.jaas;
 
 import net.sf.acegisecurity.Authentication;
-import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
 
 import javax.security.auth.callback.Callback;
 import javax.security.auth.callback.NameCallback;
@@ -11,8 +10,9 @@ import java.io.IOException;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASNameCallbackHandler implements JAASAuthenticationCallbackHandler {
 

+ 3 - 3
core/src/main/java/org/acegisecurity/providers/jaas/JAASPasswordCallbackHandler.java

@@ -1,7 +1,6 @@
 package net.sf.acegisecurity.providers.jaas;
 
 import net.sf.acegisecurity.Authentication;
-import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
 
 import javax.security.auth.callback.Callback;
 import javax.security.auth.callback.PasswordCallback;
@@ -11,8 +10,9 @@ import java.io.IOException;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASPasswordCallbackHandler implements JAASAuthenticationCallbackHandler {
 

+ 3 - 2
core/src/main/java/org/acegisecurity/providers/jaas/event/JAASAuthenticationEvent.java

@@ -6,8 +6,9 @@ import org.springframework.context.ApplicationEvent;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public abstract class JAASAuthenticationEvent extends ApplicationEvent {
 

+ 3 - 3
core/src/main/java/org/acegisecurity/providers/jaas/event/JAASAuthenticationFailedEvent.java

@@ -1,13 +1,13 @@
 package net.sf.acegisecurity.providers.jaas.event;
 
 import net.sf.acegisecurity.Authentication;
-import net.sf.acegisecurity.providers.jaas.event.JAASAuthenticationEvent;
 
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASAuthenticationFailedEvent extends JAASAuthenticationEvent {
 

+ 3 - 3
core/src/main/java/org/acegisecurity/providers/jaas/event/JAASAuthenticationSuccessEvent.java

@@ -1,13 +1,13 @@
 package net.sf.acegisecurity.providers.jaas.event;
 
 import net.sf.acegisecurity.Authentication;
-import net.sf.acegisecurity.providers.jaas.event.JAASAuthenticationEvent;
 
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 15, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASAuthenticationSuccessEvent extends JAASAuthenticationEvent {
 

+ 3 - 2
core/src/test/java/org/acegisecurity/providers/jaas/JAASAuthenticationProviderTests.java

@@ -14,8 +14,9 @@ import java.util.List;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 16, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class JAASAuthenticationProviderTests extends TestCase {
 

+ 3 - 4
core/src/test/java/org/acegisecurity/providers/jaas/TestAuthorityGranter.java

@@ -1,14 +1,13 @@
 package net.sf.acegisecurity.providers.jaas;
 
-import net.sf.acegisecurity.providers.jaas.AuthorityGranter;
-
 import java.security.Principal;
 
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 16, 2004<br>
+ * 
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class TestAuthorityGranter implements AuthorityGranter {
     public String grant(Principal principal) {

+ 3 - 3
core/src/test/java/org/acegisecurity/providers/jaas/TestCallbackHandler.java

@@ -1,7 +1,6 @@
 package net.sf.acegisecurity.providers.jaas;
 
 import net.sf.acegisecurity.Authentication;
-import net.sf.acegisecurity.providers.jaas.JAASAuthenticationCallbackHandler;
 
 import javax.security.auth.callback.Callback;
 import javax.security.auth.callback.TextInputCallback;
@@ -11,8 +10,9 @@ import java.io.IOException;
 /**
  * Insert comments here...
  * <br>
- * User: raykrueger@users.sourceforge.net<br>
- * Date: Jul 16, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class TestCallbackHandler implements JAASAuthenticationCallbackHandler {
 

+ 3 - 2
core/src/test/java/org/acegisecurity/providers/jaas/TestLoginModule.java

@@ -10,8 +10,9 @@ import java.util.Map;
 /**
  * Insert comments here...
  * <br>
- * @author raykrueger@users.sourceforge.net<br>
- * Date: Jul 16, 2004<br>
+ *
+ * @author Ray Krueger
+ * @version $Id$
  */
 public class TestLoginModule implements LoginModule {