Package org.alfresco.repo.web.auth
Class NoopAuthenticationListener
- java.lang.Object
-
- org.alfresco.repo.web.auth.NoopAuthenticationListener
-
- All Implemented Interfaces:
AuthenticationListener
public class NoopAuthenticationListener extends java.lang.Object implements AuthenticationListener
AuthenticationListener
that does nothing.- Author:
- Alex Miller
-
-
Constructor Summary
Constructors Constructor Description NoopAuthenticationListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
authenticationFailed(WebCredentials credentials)
An authentication attempt, using credentials, failed.void
authenticationFailed(WebCredentials credentials, java.lang.Exception ex)
An authentication attempt, using credentials, failed with exception, ex.void
userAuthenticated(WebCredentials credentials)
A user was successfully authenticated credentials.
-
-
-
Method Detail
-
userAuthenticated
public void userAuthenticated(WebCredentials credentials)
Description copied from interface:AuthenticationListener
A user was successfully authenticated credentials.- Specified by:
userAuthenticated
in interfaceAuthenticationListener
-
authenticationFailed
public void authenticationFailed(WebCredentials credentials)
Description copied from interface:AuthenticationListener
An authentication attempt, using credentials, failed.- Specified by:
authenticationFailed
in interfaceAuthenticationListener
-
authenticationFailed
public void authenticationFailed(WebCredentials credentials, java.lang.Exception ex)
Description copied from interface:AuthenticationListener
An authentication attempt, using credentials, failed with exception, ex.- Specified by:
authenticationFailed
in interfaceAuthenticationListener
-
-