From 0c1ab7f98c7c1089324af080231dd8d903955c9b Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Sat, 15 Apr 2006 12:32:50 +0000 Subject: [PATCH] Corrected a couple of Javadoc typos. --- .../providers/rcp/RemoteAuthenticationManager.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationManager.java b/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationManager.java index 27f30742c8..cf384a03b1 100644 --- a/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationManager.java +++ b/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationManager.java @@ -32,24 +32,24 @@ public interface RemoteAuthenticationManager { * and password. If authentication is successful, an array of * GrantedAuthority[] objects will be returned. * - *

+ *

* In order to maximise remoting protocol compatibility, a design decision * was taken to operate with minimal arguments and return only the minimal - * amount information required for remote clients to enable/disable + * amount of information required for remote clients to enable/disable * relevant user interface commands etc. There is nothing preventing users * from implementing their own equivalent package that works with more * complex object types. *

* * @param username the username the remote client wishes to authenticate - * with + * with. * @param password the password the remote client wishes to authenticate - * wish + * with. * * @return all of the granted authorities the specified username and - * password have access to + * password have access to. * - * @throws RemoteAuthenticationException if the authentication failed + * @throws RemoteAuthenticationException if the authentication failed. */ public GrantedAuthority[] attemptAuthentication(String username, String password) throws RemoteAuthenticationException;