| java.lang.Object CustomDNS.ZoneAuthenticator.Implementation
Method Summary | |
public boolean | authenticateUser(String username, String passwd, String hostname) Decide whether a given hostname belongs to a given user.
This function is called remotely via e-speak.
Parameters: username - The name of the user. Parameters: passwd - The password provided by the user. Parameters: hostname - The fully qualified domain name of the host. |
Implementation | public Implementation(Connection database)(Code) | | Create a new zone authenticator.
Parameters: database - A JDBC connection to the database holding ouruser records. |
authenticateUser | public boolean authenticateUser(String username, String passwd, String hostname) throws ESInvocationException(Code) | | Decide whether a given hostname belongs to a given user.
This function is called remotely via e-speak.
Parameters: username - The name of the user. Parameters: passwd - The password provided by the user. Parameters: hostname - The fully qualified domain name of the host. True if the user owns the hostname, false otherwise. exception: ESInvocationException - Thrown when an error is detectedduring remote invocation. |
|
|