diff --git a/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java b/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java index 34d4eab9ee..39538618e1 100644 --- a/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java +++ b/core/src/main/java/org/acegisecurity/providers/rcp/RemoteAuthenticationProvider.java @@ -32,24 +32,24 @@ import org.springframework.util.Assert; * Client-side object which queries a {@link RemoteAuthenticationManager} to * validate an authentication request. * - *
+ *
* A new Authentication object is created by this class comprising
* the request Authentication object's principal,
* credentials and the GrantedAuthority[]s returned
* by the RemoteAuthenticationManager.
*
+ *
* The RemoteAuthenticationManager should not require any special
* username or password setting on the remoting client proxy factory to
* execute the call. Instead the entire authentication request must be
* encapsulated solely within the Authentication request object.
* In practical terms this means the RemoteAuthenticationManager
- * will not be protected by BASIC or any other HTTP-level
+ * will not be protected by BASIC or any other HTTP-level
* authentication.
*
+ *
* If authentication fails, a RemoteAuthenticationException will
* be thrown. This exception should be caught and displayed to the user,
* enabling them to retry with alternative credentials etc.
@@ -60,9 +60,6 @@ import org.springframework.util.Assert;
*/
public class RemoteAuthenticationProvider implements AuthenticationProvider,
InitializingBean {
- //~ Static fields/initializers =============================================
-
- private static final Log logger = LogFactory.getLog(RemoteAuthenticationProvider.class);
//~ Instance fields ========================================================