Uses of Interface
org.apache.struts.apps.mailreader.dao.User

Packages that use User
org.apache.struts.apps.mailreader.dao   
org.apache.struts.apps.mailreader.dao.impl   
org.apache.struts.apps.mailreader.dao.impl.memory   
 

Uses of User in org.apache.struts.apps.mailreader.dao
 

Methods in org.apache.struts.apps.mailreader.dao 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.
 

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

Uses of User in org.apache.struts.apps.mailreader.dao.impl
 

Classes in org.apache.struts.apps.mailreader.dao.impl that implement User
 class AbstractUser
          Concrete implementation of AbstractUser.
 

Methods in org.apache.struts.apps.mailreader.dao.impl that return User
 User AbstractSubscription.getUser()
          The User owning this Subscription.
 

Constructors in org.apache.struts.apps.mailreader.dao.impl with parameters of type User
AbstractSubscription(User user, String host)
          Construct a new Subscription associated with the specified User.
 

Uses of User in org.apache.struts.apps.mailreader.dao.impl.memory
 

Classes in org.apache.struts.apps.mailreader.dao.impl.memory that implement User
 class MemoryUser
          Concrete implementation of AbstractUser used for an in-memory database backed by an XML data file.
 

Methods in org.apache.struts.apps.mailreader.dao.impl.memory that return User
 User MemoryUserDatabase.createUser(String username)
           
 User MemoryUserDatabase.findUser(String username)
           
 User[] MemoryUserDatabase.findUsers()
           
 

Methods in org.apache.struts.apps.mailreader.dao.impl.memory with parameters of type User
 void MemoryUserDatabase.removeUser(User user)
           
 

Constructors in org.apache.struts.apps.mailreader.dao.impl.memory with parameters of type User
MemorySubscription(User user, String host)
           
 



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