Authentication and loginModules
after the user transmits its credentials through the authentication scheme, jGuard should authenticate the user with them. to authenticate the user, jGuard use its credentials against some security challenges: LoginModules. loginModules are stackable: you can configure multiple loginModules (in the jGuardConfiguration.xml file),which will help you to authenticate a user or not. each loginModule has got a flag which can be 'REQUIRED','OPTIONAL','REQUISITE' ou 'SUFFICIENT' (JAAS documentation from SUN):- REQUIRED
- REQUISITE
- SUFFICIENT
- OPTIONAL
loginModules provided
here are the list of the loginModules provided:implements your own loginModule
you can add your own loginModule on the authentication loginModules list. to do it, you have to implements the javax.security.auth.spi.LoginModule interface.
on 08/01/2007 at 08:44