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

Packages that use UserDatabase
com.ecyrd.jspwiki   
com.ecyrd.jspwiki.auth   
com.ecyrd.jspwiki.auth.login   
com.ecyrd.jspwiki.auth.user   
 

Uses of UserDatabase in com.ecyrd.jspwiki
 

Methods in com.ecyrd.jspwiki that return UserDatabase
 UserDatabase WikiEngine.getUserDatabase()
           
 

Uses of UserDatabase in com.ecyrd.jspwiki.auth
 

Classes in com.ecyrd.jspwiki.auth that implement UserDatabase
 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.
 

Constructors in com.ecyrd.jspwiki.auth.login with parameters of type UserDatabase
WebContainerCallbackHandler(javax.servlet.http.HttpServletRequest request, UserDatabase database, Authorizer authorizer)
           
WikiCallbackHandler(UserDatabase database, String username, String password)
           
 

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.