|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.struts.examples.mailreader.memory.MemoryUser
Concrete implementation of User
for an in-memory
database backed by an XML data file.
Field Summary | |
private MemoryUserDatabase |
database
The UserDatabase with which we are associated. |
private java.lang.String |
fromAddress
The email address from which messages are sent. |
private java.lang.String |
fullName
The full name of this user, included in from addresses. |
private java.lang.String |
password
The password (in clear text). |
private java.lang.String |
replyToAddress
The EMAIL address to which replies should be sent. |
private java.util.HashMap |
subscriptions
The Subscription s for this User, keyed by hostname. |
private java.lang.String |
username
The username for this user. |
Constructor Summary | |
MemoryUser(MemoryUserDatabase database,
java.lang.String username)
Construct a new User associated with the specified UserDatabase . |
Method Summary | |
Subscription |
createSubscription(java.lang.String host)
Create and return a new Subscription associated with this
User, for the specified host name. |
Subscription |
findSubscription(java.lang.String host)
Find and return the Subscription associated with the specified
host. |
UserDatabase |
getDatabase()
The UserDatabase with which we are associated. |
java.lang.String |
getFromAddress()
Return the from address. |
java.lang.String |
getFullName()
Return the full name. |
java.lang.String |
getPassword()
Return the password. |
java.lang.String |
getReplyToAddress()
Return the reply-to address. |
Subscription[] |
getSubscriptions()
Find and return all Subscription s associated with this user. |
java.lang.String |
getUsername()
The username (must be unique). |
void |
removeSubscription(Subscription subscription)
Remove the specified Subscription from being associated
with this User. |
void |
setFromAddress(java.lang.String fromAddress)
Set the from address. |
void |
setFullName(java.lang.String fullName)
Set the full name. |
void |
setPassword(java.lang.String password)
Set the password. |
void |
setReplyToAddress(java.lang.String replyToAddress)
Set the reply-to address. |
java.lang.String |
toString()
Return a String representation of this object. |
Methods inherited from class java.lang.Object |
|
Field Detail |
private MemoryUserDatabase database
UserDatabase
with which we are associated.private java.util.HashMap subscriptions
Subscription
s for this User, keyed by hostname.private java.lang.String username
private java.lang.String fromAddress
private java.lang.String fullName
private java.lang.String password
private java.lang.String replyToAddress
Constructor Detail |
public MemoryUser(MemoryUserDatabase database, java.lang.String username)
Construct a new User associated with the specified
UserDatabase
.
database
- The user database with which we are associatedusername
- The username of this userMethod Detail |
public UserDatabase getDatabase()
UserDatabase
with which we are associated.getDatabase
in interface User
public java.lang.String getFromAddress()
User
getFromAddress
in interface User
public void setFromAddress(java.lang.String fromAddress)
User
setFromAddress
in interface User
org.apache.struts.examples.mailreader.User
fromAddress
- The new from addresspublic java.lang.String getFullName()
User
getFullName
in interface User
public void setFullName(java.lang.String fullName)
User
setFullName
in interface User
org.apache.struts.examples.mailreader.User
fullName
- The new full namepublic java.lang.String getPassword()
User
getPassword
in interface User
public void setPassword(java.lang.String password)
User
setPassword
in interface User
org.apache.struts.examples.mailreader.User
password
- The new passwordpublic java.lang.String getReplyToAddress()
User
getReplyToAddress
in interface User
public void setReplyToAddress(java.lang.String replyToAddress)
User
setReplyToAddress
in interface User
org.apache.struts.examples.mailreader.User
replyToAddress
- The new reply-to addresspublic Subscription[] getSubscriptions()
Subscription
s associated with this user.
If there are none, a zero-length array is returned.getSubscriptions
in interface User
public java.lang.String getUsername()
getUsername
in interface User
public Subscription createSubscription(java.lang.String host)
Subscription
associated with this
User, for the specified host name.createSubscription
in interface User
host
- Host name for which to create a subscriptionjava.lang.IllegalArgumentException
- if the host name is not unique
for this userpublic Subscription findSubscription(java.lang.String host)
Subscription
associated with the specified
host. If none is found, return null
.findSubscription
in interface User
host
- Host name to look uppublic void removeSubscription(Subscription subscription)
Subscription
from being associated
with this User.removeSubscription
in interface User
subscription
- Subscription to be removedjava.lang.IllegalArgumentException
- if the specified subscription is not
associated with this Userpublic java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |