com.ibm.commerce.emarketing.engine

Class EmailRecipient



  • public class EmailRecipient
    extends Recipient
    The simpliest sub-class of Recipient that is capable of receiving email. The only extension to the Recipient class is the addition of an InternetAddress. This additional field represents the e-mail address from which the Recipient receives email.
    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static java.lang.String COPYRIGHT
      Copyright.
    • Constructor Summary

      Constructors 
      Constructor and Description
      EmailRecipient()
      Null argument constructor.
      EmailRecipient(javax.mail.internet.InternetAddress newInternetAddress)
      Constructor for this class.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      javax.mail.internet.InternetAddress getInternetAddress()
      Gets the InternetAddress assigned to this recipient.
      void setInternetAddress(javax.mail.internet.InternetAddress internetAddress)
      Sets the InternetAddress of this recipient.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

    • Constructor Detail

      • EmailRecipient

        public EmailRecipient()
        Null argument constructor.
      • EmailRecipient

        public EmailRecipient(javax.mail.internet.InternetAddress newInternetAddress)
        Constructor for this class.
        Parameters:
        The - InternetAddress representing the recipient's e-mail address.
    • Method Detail

      • getInternetAddress

        public javax.mail.internet.InternetAddress getInternetAddress()
        Gets the InternetAddress assigned to this recipient.
        Returns:
        The InternetAddress representing the recipient's e-mail address.
      • setInternetAddress

        public void setInternetAddress(javax.mail.internet.InternetAddress internetAddress)
        Sets the InternetAddress of this recipient.
        Parameters:
        internetAddress - The InternetAddress representing the recipient's email address.