Package com.knowgate.hipermail

Source Code of com.knowgate.hipermail.SilentAuthenticator

package com.knowgate.hipermail;

import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;

/**
* @author Sergio Montoro Ten
* @version 1.0
*/

public class SilentAuthenticator extends Authenticator {
  private PasswordAuthentication oPwdAuth;

  public SilentAuthenticator(String sUserName, String sAuthStr) {
    oPwdAuth = new PasswordAuthentication(sUserName, sAuthStr);
  }

  protected PasswordAuthentication getPasswordAuthentication() {
    return oPwdAuth;
  }
}
TOP

Related Classes of com.knowgate.hipermail.SilentAuthenticator

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.