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
All Methods Instance Methods Abstract 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
void userAuthenticated(WebCredentials credentials)
A user was successfully authenticated credentials.
-
authenticationFailed
void authenticationFailed(WebCredentials credentials, java.lang.Exception ex)
An authentication attempt, using credentials, failed with exception, ex.
-
authenticationFailed
void authenticationFailed(WebCredentials credentials)
An authentication attempt, using credentials, failed.
-
-