From cc2705ef49d9d534a8456c818f9fa85cbf1a8b39 Mon Sep 17 00:00:00 2001 From: Derek Hulley Date: Thu, 31 May 2007 03:34:33 +0000 Subject: [PATCH] Removed some unused javadoc tags git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5815 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../AuthenticationComponent.java | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/source/java/org/alfresco/repo/security/authentication/AuthenticationComponent.java b/source/java/org/alfresco/repo/security/authentication/AuthenticationComponent.java index 1860c5d361..b883ed4412 100644 --- a/source/java/org/alfresco/repo/security/authentication/AuthenticationComponent.java +++ b/source/java/org/alfresco/repo/security/authentication/AuthenticationComponent.java @@ -32,8 +32,6 @@ public interface AuthenticationComponent /** * Authenticate * - * @param userName - * @param password * @throws AuthenticationException */ public void authenticate(String userName, char[] password) throws AuthenticationException; @@ -71,70 +69,53 @@ public interface AuthenticationComponent /** * - * @return * @throws AuthenticationException */ public Authentication getCurrentAuthentication() throws AuthenticationException; /** * Set the system user as the current user. - * - * @return */ public Authentication setSystemUserAsCurrentUser(); /** * Set the guest user as the current user. - * - * @return */ public Authentication setGuestUserAsCurrentUser(); /** * True if Guest user authentication is allowed, false otherwise - * - * @return */ public boolean guestUserAuthenticationAllowed(); /** * Get the name of the system user - * - * @return */ public String getSystemUserName(); /** * Get the name of the guest user - * - * @return */ public String getGuestUserName(); /** * Get the current user name. * - * @return * @throws AuthenticationException */ public String getCurrentUserName() throws AuthenticationException; /** * Get the enum that describes NTLM integration - * - * @return */ public NTLMMode getNTLMMode(); /** * Get the MD4 password hash, as required by NTLM based authentication methods. - * - * @param userName - * @return */ public String getMD4HashedPassword(String userName); }