com.ecyrd.jspwiki.auth.user |
|
Java Source File Name | Type | Comment |
AbstractUserDatabase.java | Class | Abstract UserDatabase class that provides convenience methods for finding
profiles, building Principal collections and hashing passwords.
author: Andrew R. |
AllTests.java | Class | author: Andrew R. |
DefaultUserProfile.java | Class | Default implementation for representing wiki user information, such as the
login name, full name, wiki name, and e-mail address. |
DuplicateUserException.java | Class | Exception indicating that an identical user already exists in the user
database. |
JDBCUserDatabase.java | Class | Implementation of UserDatabase that persists
DefaultUserProfile objects to a JDBC DataSource, as might typically be provided by a web
container. |
JDBCUserDatabaseTest.java | Class | |
UserDatabase.java | Interface | Defines an interface for loading, persisting and storing users. |
UserProfile.java | Interface | Class for representing wiki user information, such as the login name, full
name, wiki name, and e-mail address. |
UserProfileTest.java | Class | Tests the DefaultUserProfile class. |
XMLUserDatabase.java | Class | Manages
DefaultUserProfile objects using XML files for persistence.
Passwords are hashed using SHA1. |
XMLUserDatabaseTest.java | Class | |