org.apache.commons.mail
Class DefaultAuthenticator

java.lang.Object
  extended by javax.mail.Authenticator
      extended by org.apache.commons.mail.DefaultAuthenticator

public class DefaultAuthenticator
extends javax.mail.Authenticator

This is a very simple authentication object that can be used for any transport needing basic userName and password type authentication.

Since:
1.0
Version:
$Id: DefaultAuthenticator.java 480401 2006-11-29 04:40:04Z bayard $
Author:
Quinton McCombs

Constructor Summary
DefaultAuthenticator(String userName, String password)
          Default constructor
 
Method Summary
protected  javax.mail.PasswordAuthentication getPasswordAuthentication()
          Gets the authentication object that will be used to login to the mail server.
 
Methods inherited from class javax.mail.Authenticator
getDefaultUserName, getRequestingPort, getRequestingPrompt, getRequestingProtocol, getRequestingSite
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DefaultAuthenticator

public DefaultAuthenticator(String userName,
                            String password)
Default constructor

Parameters:
userName - user name to use when authentication is requested
password - password to use when authentication is requested
Since:
1.0
Method Detail

getPasswordAuthentication

protected javax.mail.PasswordAuthentication getPasswordAuthentication()
Gets the authentication object that will be used to login to the mail server.

Overrides:
getPasswordAuthentication in class javax.mail.Authenticator
Returns:
A PasswordAuthentication object containing the login information.
Since:
1.0


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.