Removed some unused javadoc tags

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5815 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley 2007-05-31 03:34:33 +00:00
parent 95972722b3
commit cc2705ef49

View File

@ -32,8 +32,6 @@ public interface AuthenticationComponent
/** /**
* Authenticate * Authenticate
* *
* @param userName
* @param password
* @throws AuthenticationException * @throws AuthenticationException
*/ */
public void authenticate(String userName, char[] password) throws AuthenticationException; public void authenticate(String userName, char[] password) throws AuthenticationException;
@ -71,70 +69,53 @@ public interface AuthenticationComponent
/** /**
* *
* @return
* @throws AuthenticationException * @throws AuthenticationException
*/ */
public Authentication getCurrentAuthentication() throws AuthenticationException; public Authentication getCurrentAuthentication() throws AuthenticationException;
/** /**
* Set the system user as the current user. * Set the system user as the current user.
*
* @return
*/ */
public Authentication setSystemUserAsCurrentUser(); public Authentication setSystemUserAsCurrentUser();
/** /**
* Set the guest user as the current user. * Set the guest user as the current user.
*
* @return
*/ */
public Authentication setGuestUserAsCurrentUser(); public Authentication setGuestUserAsCurrentUser();
/** /**
* True if Guest user authentication is allowed, false otherwise * True if Guest user authentication is allowed, false otherwise
*
* @return
*/ */
public boolean guestUserAuthenticationAllowed(); public boolean guestUserAuthenticationAllowed();
/** /**
* Get the name of the system user * Get the name of the system user
*
* @return
*/ */
public String getSystemUserName(); public String getSystemUserName();
/** /**
* Get the name of the guest user * Get the name of the guest user
*
* @return
*/ */
public String getGuestUserName(); public String getGuestUserName();
/** /**
* Get the current user name. * Get the current user name.
* *
* @return
* @throws AuthenticationException * @throws AuthenticationException
*/ */
public String getCurrentUserName() throws AuthenticationException; public String getCurrentUserName() throws AuthenticationException;
/** /**
* Get the enum that describes NTLM integration * Get the enum that describes NTLM integration
*
* @return
*/ */
public NTLMMode getNTLMMode(); public NTLMMode getNTLMMode();
/** /**
* Get the MD4 password hash, as required by NTLM based authentication methods. * Get the MD4 password hash, as required by NTLM based authentication methods.
*
* @param userName
* @return
*/ */
public String getMD4HashedPassword(String userName); public String getMD4HashedPassword(String userName);
} }