Uses of Interface
org.apache.struts.webapp.example.User

Packages that use User
org.apache.struts.webapp.example   
org.apache.struts.webapp.example.memory   
 

Uses of User in org.apache.struts.webapp.example
 

Methods in org.apache.struts.webapp.example that return User
 User Subscription.getUser()
          Return the User owning this Subscription.
 User UserDatabase.createUser(String username)
          Create and return a new User defined in this user database.
 User UserDatabase.findUser(String username)
          Return the existing User with the specified username, if any; otherwise return null.
 User[] UserDatabase.findUsers()
          Return the set of Users defined in this user database.
(package private)  User LogonAction.getUser(UserDatabase database, String username, String password, org.apache.struts.action.ActionMessages errors)
          Confirm user credentials.
 

Methods in org.apache.struts.webapp.example with parameters of type User
 void UserDatabase.removeUser(User user)
          Remove the specified User from this database.
(package private)  void LogonAction.SaveUser(javax.servlet.http.HttpServletRequest request, User user)
          Store User object in client session.
 

Uses of User in org.apache.struts.webapp.example.memory
 

Classes in org.apache.struts.webapp.example.memory that implement User
 class MemoryUser
          Concrete implementation of User for an in-memory database backed by an XML data file.
 

Methods in org.apache.struts.webapp.example.memory that return User
 User TestUserDatabase.findUser(String username)
          If the username is "expired" throw an ExpiredPasswordException to simulate a business exception.
 User MemoryUserDatabase.createUser(String username)
           
 User MemoryUserDatabase.findUser(String username)
           
 User[] MemoryUserDatabase.findUsers()
           
 User MemorySubscription.getUser()
          The User owning this Subscription.
 

Methods in org.apache.struts.webapp.example.memory with parameters of type User
 void MemoryUserDatabase.removeUser(User user)
           
 



Copyright © 1999-2005 Apache Software Foundation. All Rights Reserved.