| java.lang.Object net.wastl.webmail.server.Authenticator org.webengruven.webmail.auth.CRAuthenticator
All known Subclasses: org.webengruven.webmail.auth.OTPAuthenticatorIface,
CRAuthenticator | abstract public class CRAuthenticator extends Authenticator (Code) | | CRAuthenticator.java
This is the base class for all Authenticators which implement challenge
response authentication. As a general rule most parts of Webmail won't
care if if an authenticator is a child of the class Authenticator, or a
child of CRAuthenticator, however, there are a few extra methods needed
for challenge response.
Also worth noting, this used to be the name of concrete authenticator. I
decided that it was okay to reuse the name here because:
1) it was only a test authenticator
2) I really couldn't think of a better name.
Created: Mon Jul 15 20:25
Recreated: Sun Sep 24 2000
08/11/2000 Sebastian Schaffert: Modified to fit into WebMail 0.7.2
- added import net.wastl.webmail.exceptions.*;
author: Devin Kowatch version: $Revision: 1.1.1.1 $ See Also: webmail.server.UserData See Also: Copyright (C) 2000 Devin Kowatch |
CRAuthenticator | public CRAuthenticator()(Code) | | |
getAuthDisplayMngr | public AuthDisplayMngr getAuthDisplayMngr()(Code) | | Return an AuthDisplayMngr to use for display
|
getChallenge | abstract public String getChallenge(UserData ud) throws WebMailException(Code) | | Get the challenge for this authentication. This will get passed some
user data and should return the approriate challenge string for that
user.
|
|
|