Class AuthHookModule.Null

java.lang.Object
com.illumon.iris.auth.AuthHookModule.Null
All Implemented Interfaces:
AuthHookModule
Enclosing interface:
AuthHookModule

public static class AuthHookModule.Null extends Object implements AuthHookModule
  • Constructor Details

    • Null

      public Null()
  • Method Details

    • onLogin

      public void onLogin(UserContext userContext)
      Description copied from interface: AuthHookModule
      Called after a client successfully logs in to the authentication server.
      Specified by:
      onLogin in interface AuthHookModule
      Parameters:
      userContext - the userContext of the login
    • onLogout

      public void onLogout(UserContext userContext)
      Description copied from interface: AuthHookModule
      Called after a client logs out from the authentication server (i.e. disconnects).
      Specified by:
      onLogout in interface AuthHookModule
      Parameters:
      userContext - the userContext of the terminating connection
    • onTokenCreate

      public void onTokenCreate(UserContext authenticatedContext, String service)
      Description copied from interface: AuthHookModule
      Called after an authentication token is created.
      Specified by:
      onTokenCreate in interface AuthHookModule
      Parameters:
      authenticatedContext - the context of the user creating the token
      service - the service the user is creating a token for
    • onTokenVerify

      public void onTokenVerify(UserContext authenticatedContext, String service)
      Description copied from interface: AuthHookModule
      Called after an authentication token is verified
      Specified by:
      onTokenVerify in interface AuthHookModule
      Parameters:
      authenticatedContext - the context of the verified token
      service - the service for which the token is valid
    • onTokenVerifyFailure

      public void onTokenVerifyFailure(UserContext authenticatedContext, String service)
      Description copied from interface: AuthHookModule
      Called after an authentication token fails verification
      Specified by:
      onTokenVerifyFailure in interface AuthHookModule
      Parameters:
      authenticatedContext - the context of the verified token
      service - the service for which the token is valid
    • onReload

      public void onReload()
      Description copied from interface: AuthHookModule
      Called after the authentication server configuration is reloaded.
      Specified by:
      onReload in interface AuthHookModule