Class EmailDelivery

  • All Implemented Interfaces:
    java.io.Serializable

    public class EmailDelivery
    extends java.lang.Object
    implements java.io.Serializable
    Delivery instructions for an email message.
    Author:
    mrogers
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      EmailDelivery​(java.lang.String recipient, java.lang.String from, java.lang.String auth)
      New Email Delivery Instructions.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getAuth()  
      java.lang.String getFrom()  
      java.lang.String getRecipient()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • EmailDelivery

        public EmailDelivery​(java.lang.String recipient,
                             java.lang.String from,
                             java.lang.String auth)
        New Email Delivery Instructions. Who gets the message and who sent it. Which may be different from the contents of the message.
        Parameters:
        recipient - String
        from - String
        auth - - may be null if the email is not authenticated
    • Method Detail

      • getRecipient

        public java.lang.String getRecipient()
      • getFrom

        public java.lang.String getFrom()
      • getAuth

        public java.lang.String getAuth()