www.pudn.com > JMail4Email.rar > UserInfo.java


package ezmail; 
 
public class UserInfo implements java.io.Serializable { 
 
	private String pop3host; 
	private String user; 
	private String password; 
	private String emailAddress; 
 
	public UserInfo(String thePop3host, String theUser, String thePassword, 
								 String theEmailAddress) { 
		pop3host = thePop3host; 
		user = theUser; 
		password = thePassword; 
		emailAddress = theEmailAddress; 
	} 
 
	public String getPop3host() { 
		return pop3host; 
	} 
 
	public String getUser() { 
		return user; 
	} 
 
	public String getPassword() { 
		return password; 
	} 
 
	public String getEmailAddress() { 
		return emailAddress; 
	} 
 
	public String toString() { 
		return user + " - " + emailAddress; 
	} 
}