Package ar.com.AmberSoft.util

Source Code of ar.com.AmberSoft.util.Authenticator

package ar.com.AmberSoft.util;

import javax.mail.PasswordAuthentication;

public class Authenticator extends javax.mail.Authenticator {
    private String    username;
      private String    password;
  
      public Authenticator(String username, String password)
      {
        this.username = username;
        this.password = password;
      }
  
      public PasswordAuthentication getPasswordAuthentication()
      {
        return new PasswordAuthentication(username, password);
      }
}
TOP

Related Classes of ar.com.AmberSoft.util.Authenticator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.