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 TypeMethodDescriptionvoid
authenticationFailed
(WebCredentials credentials) An authentication attempt, using credentials, failed.void
authenticationFailed
(WebCredentials credentials, Exception ex) An authentication attempt, using credentials, failed with exception, ex.void
userAuthenticated
(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.
-