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 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.
 User Subscription.getUser()
          Return the User owning this Subscription.
 User LogonAction.getUser(UserDatabase database, String username)
          Look up the user, throwing an exception to simulate business logic rule exceptions.
 

Methods in org.apache.struts.webapp.example with parameters of type User
 void UserDatabase.removeUser(User user)
          Remove the specified User from this database.
 

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 MemoryUserDatabase.createUser(String username)
          Create and return a new User defined in this user database.
 User MemoryUserDatabase.findUser(String username)
          Return the existing User with the specified username, if any; otherwise return null.
 User[] MemoryUserDatabase.findUsers()
          Return the set of Users defined in this user database.
 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)
          Remove the specified User from this database.
 



Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.