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
AuthenticationListenerthat does nothing.- Author:
- Alex Miller
-
-
Constructor Summary
Constructors Constructor Description NoopAuthenticationListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidauthenticationFailed(WebCredentials credentials)An authentication attempt, using credentials, failed.voidauthenticationFailed(WebCredentials credentials, java.lang.Exception ex)An authentication attempt, using credentials, failed with exception, ex.voiduserAuthenticated(WebCredentials credentials)A user was successfully authenticated credentials.
-
-
-
Method Detail
-
userAuthenticated
public void userAuthenticated(WebCredentials credentials)
Description copied from interface:AuthenticationListenerA user was successfully authenticated credentials.- Specified by:
userAuthenticatedin interfaceAuthenticationListener
-
authenticationFailed
public void authenticationFailed(WebCredentials credentials)
Description copied from interface:AuthenticationListenerAn authentication attempt, using credentials, failed.- Specified by:
authenticationFailedin interfaceAuthenticationListener
-
authenticationFailed
public void authenticationFailed(WebCredentials credentials, java.lang.Exception ex)
Description copied from interface:AuthenticationListenerAn authentication attempt, using credentials, failed with exception, ex.- Specified by:
authenticationFailedin interfaceAuthenticationListener
-
-