Class | Description |
---|---|
AbstractJdbcUsernamePasswordAuthenticationHandler |
Abstract class for database authentication handlers.
|
BindModeSearchDatabaseAuthenticationHandler |
This class attempts to authenticate the user by opening a connection to the
database with the provided username and password.
|
QueryAndEncodeDatabaseAuthenticationHandler |
A JDBC querying handler that will pull back the password and
the private salt value for a user and validate the encoded
password using the public salt value.
|
QueryDatabaseAuthenticationHandler |
Class that if provided a query that returns a password (parameter of query
must be username) will compare that password to a translated version of the
password provided by the user.
|
SearchModeSearchDatabaseAuthenticationHandler |
Class that given a table, username field and password field will query a
database table with the provided encryption technique to see if the user
exists.
|