www.pudn.com > mailbox.zip > PopupAuthenticator.java


package mailbox; 
 
import javax.mail.*; 
public class PopupAuthenticator extends Authenticator{ 
protected PasswordAuthentication getPasswordAuthentication() { 
return new PasswordAuthentication(User.getUserName(),User.getPassWord());  
}  
 
}