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 Details

    • userAuthenticated

      void userAuthenticated(WebCredentials credentials)
      A user was successfully authenticated credentials.
    • authenticationFailed

      void authenticationFailed(WebCredentials credentials, Exception ex)
      An authentication attempt, using credentials, failed with exception, ex.
    • authenticationFailed

      void authenticationFailed(WebCredentials credentials)
      An authentication attempt, using credentials, failed.