Uses of Interface
com.ecyrd.jspwiki.auth.user.UserDatabase

Packages that use UserDatabase
com.ecyrd.jspwiki.auth Authentication, Authorization and the third A thing. 
com.ecyrd.jspwiki.auth.login Provides the different login modules that JSPWiki uses. 
com.ecyrd.jspwiki.auth.user   
 

Uses of UserDatabase in com.ecyrd.jspwiki.auth
 

Classes in com.ecyrd.jspwiki.auth that implement UserDatabase
static class UserManager.DummyUserDatabase
          This is a database that gets used if nothing else is available.
 

Methods in com.ecyrd.jspwiki.auth that return UserDatabase
 UserDatabase UserManager.getUserDatabase()
          Returns the UserDatabase employed by this WikiEngine.
 

Uses of UserDatabase in com.ecyrd.jspwiki.auth.login
 

Methods in com.ecyrd.jspwiki.auth.login that return UserDatabase
 UserDatabase UserDatabaseCallback.getUserDatabase()
          Returns the user database object.
 

Methods in com.ecyrd.jspwiki.auth.login with parameters of type UserDatabase
 void UserDatabaseCallback.setUserDatabase(UserDatabase database)
          Sets the user database.
 

Uses of UserDatabase in com.ecyrd.jspwiki.auth.user
 

Classes in com.ecyrd.jspwiki.auth.user that implement UserDatabase
 class AbstractUserDatabase
          Abstract UserDatabase class that provides convenience methods for finding profiles, building Principal collections and hashing passwords.
 class JDBCUserDatabase
           Implementation of UserDatabase that persists DefaultUserProfile objects to a JDBC DataSource, as might typically be provided by a web container.
 class XMLUserDatabase
          Manages DefaultUserProfile objects using XML files for persistence.
 

Methods in com.ecyrd.jspwiki.auth.user with parameters of type UserDatabase
protected static String AbstractUserDatabase.generateUid(UserDatabase db)
          Generates a new random user identifier (uid) that is guaranteed to be unique.
protected static UserProfile DefaultUserProfile.newProfile(UserDatabase db)
          Static factory method that creates a new DefaultUserProfile and sets a unique identifier (uid) for the supplied UserDatabase.