Package org.alfresco.repo.web.auth
Interface AuthenticationListener
- All Known Implementing Classes:
NoopAuthenticationListener
public interface AuthenticationListener
AuthenticationListener implementations can receive notifications of successful and unsuccessful
authentication requests, made during web script, WebDav or Sharepoint requests.
- Author:
- Alex Miller
-
Method Summary
Modifier and TypeMethodDescriptionvoidauthenticationFailed(WebCredentials credentials) An authentication attempt, using credentials, failed.voidauthenticationFailed(WebCredentials credentials, Exception ex) An authentication attempt, using credentials, failed with exception, ex.voiduserAuthenticated(WebCredentials credentials) A user was successfully authenticated credentials.
-
Method Details
-
userAuthenticated
A user was successfully authenticated credentials. -
authenticationFailed
An authentication attempt, using credentials, failed with exception, ex. -
authenticationFailed
An authentication attempt, using credentials, failed.
-