Removed unused logger.
This commit is contained in:
parent
f9e043d43a
commit
2b0a65983d
|
@ -32,24 +32,24 @@ import org.springframework.util.Assert;
|
||||||
* Client-side object which queries a {@link RemoteAuthenticationManager} to
|
* Client-side object which queries a {@link RemoteAuthenticationManager} to
|
||||||
* validate an authentication request.
|
* validate an authentication request.
|
||||||
*
|
*
|
||||||
* <P>
|
* <p>
|
||||||
* A new <code>Authentication</code> object is created by this class comprising
|
* A new <code>Authentication</code> object is created by this class comprising
|
||||||
* the request <code>Authentication</code> object's <code>principal</code>,
|
* the request <code>Authentication</code> object's <code>principal</code>,
|
||||||
* <code>credentials</code> and the <code>GrantedAuthority</code>[]s returned
|
* <code>credentials</code> and the <code>GrantedAuthority</code>[]s returned
|
||||||
* by the <code>RemoteAuthenticationManager</code>.
|
* by the <code>RemoteAuthenticationManager</code>.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <P>
|
* <p>
|
||||||
* The <code>RemoteAuthenticationManager</code> should not require any special
|
* The <code>RemoteAuthenticationManager</code> should not require any special
|
||||||
* username or password setting on the remoting client proxy factory to
|
* username or password setting on the remoting client proxy factory to
|
||||||
* execute the call. Instead the entire authentication request must be
|
* execute the call. Instead the entire authentication request must be
|
||||||
* encapsulated solely within the <code>Authentication</code> request object.
|
* encapsulated solely within the <code>Authentication</code> request object.
|
||||||
* In practical terms this means the <code>RemoteAuthenticationManager</code>
|
* In practical terms this means the <code>RemoteAuthenticationManager</code>
|
||||||
* will <B>not</B> be protected by BASIC or any other HTTP-level
|
* will <b>not</b> be protected by BASIC or any other HTTP-level
|
||||||
* authentication.
|
* authentication.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <P>
|
* <p>
|
||||||
* If authentication fails, a <code>RemoteAuthenticationException</code> will
|
* If authentication fails, a <code>RemoteAuthenticationException</code> will
|
||||||
* be thrown. This exception should be caught and displayed to the user,
|
* be thrown. This exception should be caught and displayed to the user,
|
||||||
* enabling them to retry with alternative credentials etc.
|
* enabling them to retry with alternative credentials etc.
|
||||||
|
@ -60,9 +60,6 @@ import org.springframework.util.Assert;
|
||||||
*/
|
*/
|
||||||
public class RemoteAuthenticationProvider implements AuthenticationProvider,
|
public class RemoteAuthenticationProvider implements AuthenticationProvider,
|
||||||
InitializingBean {
|
InitializingBean {
|
||||||
//~ Static fields/initializers =============================================
|
|
||||||
|
|
||||||
private static final Log logger = LogFactory.getLog(RemoteAuthenticationProvider.class);
|
|
||||||
|
|
||||||
//~ Instance fields ========================================================
|
//~ Instance fields ========================================================
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue