MailAuthenticator.java
资源名称:某公司的java培训教材 [点击查看]
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:
Java编程
开发平台:
Java
- package bible.javamail;
- import javax.mail.*;
- /**
- * Class MailAuthenticator
- *
- *
- * @author
- * @version %I%, %G%
- */
- public class MailAuthenticator extends Authenticator {
- private String user;
- private String password;
- /**
- * Method setUser
- *
- *
- * @param s
- *
- */
- public void setUser(String s) {
- user = s;
- }
- /**
- * Method getUser
- *
- *
- * @return
- *
- */
- public String getUser() {
- return user;
- }
- /**
- * Method setPassword
- *
- *
- * @param s
- *
- */
- public void setPassword(String s) {
- password = s;
- }
- /**
- * Method getPassword
- *
- *
- * @return
- *
- */
- public String getPassword() {
- return password;
- }
- /**
- * Method getPasswordAuthentication
- *
- *
- * @return
- *
- */
- public PasswordAuthentication getPasswordAuthentication() {
- return new PasswordAuthentication(user, password);
- }
- }
- /*--- Formatted in Bible Style on Thu, Sep 6, '01 ---*/
- /*------ Formatted by Jindent 3.24 Gold 1.02 --- http://www.jindent.de ------*/