Package com.illumon.iris.auth
Class AuthHookModule.Null
java.lang.Object
com.illumon.iris.auth.AuthHookModule.Null
- All Implemented Interfaces:
AuthHookModule
- Enclosing interface:
- AuthHookModule
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.illumon.iris.auth.AuthHookModule
AuthHookModule.Null -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidonLogin(UserContext userContext) Called after a client successfully logs in to the authentication server.voidonLogout(UserContext userContext) Called after a client logs out from the authentication server (i.e.voidonReload()Called after the authentication server configuration is reloaded.voidonTokenCreate(UserContext authenticatedContext, String service) Called after an authentication token is created.voidonTokenVerify(UserContext authenticatedContext, String service) Called after an authentication token is verifiedvoidonTokenVerifyFailure(UserContext authenticatedContext, String service) Called after an authentication token fails verification
-
Constructor Details
-
Null
public Null()
-
-
Method Details
-
onLogin
Description copied from interface:AuthHookModuleCalled after a client successfully logs in to the authentication server.- Specified by:
onLoginin interfaceAuthHookModule- Parameters:
userContext- the userContext of the login
-
onLogout
Description copied from interface:AuthHookModuleCalled after a client logs out from the authentication server (i.e. disconnects).- Specified by:
onLogoutin interfaceAuthHookModule- Parameters:
userContext- the userContext of the terminating connection
-
onTokenCreate
Description copied from interface:AuthHookModuleCalled after an authentication token is created.- Specified by:
onTokenCreatein interfaceAuthHookModule- Parameters:
authenticatedContext- the context of the user creating the tokenservice- the service the user is creating a token for
-
onTokenVerify
Description copied from interface:AuthHookModuleCalled after an authentication token is verified- Specified by:
onTokenVerifyin interfaceAuthHookModule- Parameters:
authenticatedContext- the context of the verified tokenservice- the service for which the token is valid
-
onTokenVerifyFailure
Description copied from interface:AuthHookModuleCalled after an authentication token fails verification- Specified by:
onTokenVerifyFailurein interfaceAuthHookModule- Parameters:
authenticatedContext- the context of the verified tokenservice- the service for which the token is valid
-
onReload
public void onReload()Description copied from interface:AuthHookModuleCalled after the authentication server configuration is reloaded.- Specified by:
onReloadin interfaceAuthHookModule
-