Class SMTPConfiguration

    • Constructor Summary

      Constructors 
      Constructor Description
      SMTPConfiguration()
      Creates an empty default SMTP configuration.
      SMTPConfiguration​(int smtpPort, java.lang.String smtpHost, java.lang.String userName, java.lang.String userPass, boolean useSSLSMTP, java.lang.String fromAddress, java.lang.String replyToAddress)
      Instantiate SMTPConfiguration using given parameters.
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      java.lang.String getFromAddress()
      Returns the From address for sending emails.
      java.lang.String getReplyToAddress()
      Returns the Reply-To address for sending emails.
      java.lang.String getSMTPHost()
      Returns the host name for SMTP.
      int getSMTPPort()
      Returns the port number for SMTP.
      java.lang.String getUserName()
      Returns the username for SMTP authentication.
      java.lang.String getUserPass()
      Returns the password for SMTP authentication.
      void setFromAddress​(java.lang.String fromAddress)
      Deprecated.
      void setReplyToAddress​(java.lang.String replyToAddress)
      Deprecated.
      void setSMTPHost​(java.lang.String host)
      Deprecated.
      void setSMTPPort​(int port)
      Deprecated.
      void setUserName​(java.lang.String userName)
      Deprecated.
      void setUserPass​(java.lang.String userPass)
      Deprecated.
      void setUseSSLSMTP​(boolean useSSLSMTP)
      Deprecated.
      boolean useSSLSMTP()
      Returns whether to use SSL for SMTP.
      • Methods inherited from class java.lang.Object

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

      • SMTPConfiguration

        public SMTPConfiguration()
        Creates an empty default SMTP configuration.
      • SMTPConfiguration

        public SMTPConfiguration​(int smtpPort,
                                 java.lang.String smtpHost,
                                 java.lang.String userName,
                                 java.lang.String userPass,
                                 boolean useSSLSMTP,
                                 java.lang.String fromAddress,
                                 java.lang.String replyToAddress)
        Instantiate SMTPConfiguration using given parameters.
        Parameters:
        smtpPort - smtp port
        smtpHost - smtp host
        userName - user name
        userPass - password
        useSSLSMTP - use SSL
        fromAddress - from address
        replyToAddress - replyTo address
    • Method Detail

      • useSSLSMTP

        public boolean useSSLSMTP()
        Description copied from interface: ISMTPConfiguration
        Returns whether to use SSL for SMTP.
        Specified by:
        useSSLSMTP in interface ISMTPConfiguration
        Returns:
        true if SSL is used, false otherwise
      • setUseSSLSMTP

        @Deprecated
        public void setUseSSLSMTP​(boolean useSSLSMTP)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets whether to use SSL for SMTP.
        Specified by:
        setUseSSLSMTP in interface ISMTPConfiguration
        Parameters:
        useSSLSMTP - true if SSL is to be used, false otherwise
      • setSMTPPort

        @Deprecated
        public void setSMTPPort​(int port)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the port number for SMTP to the specified value.
        Specified by:
        setSMTPPort in interface ISMTPConfiguration
        Parameters:
        port - the port number to set
      • setSMTPHost

        @Deprecated
        public void setSMTPHost​(java.lang.String host)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the host name for SMTP to the specified value.
        Specified by:
        setSMTPHost in interface ISMTPConfiguration
        Parameters:
        host - the host name to set
      • getUserName

        public java.lang.String getUserName()
        Description copied from interface: ISMTPConfiguration
        Returns the username for SMTP authentication.
        Specified by:
        getUserName in interface ISMTPConfiguration
        Returns:
        the SMTP username
      • setUserName

        @Deprecated
        public void setUserName​(java.lang.String userName)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the username for SMTP authentication.
        Specified by:
        setUserName in interface ISMTPConfiguration
        Parameters:
        userName - the username to set
      • getUserPass

        public java.lang.String getUserPass()
        Description copied from interface: ISMTPConfiguration
        Returns the password for SMTP authentication.
        Specified by:
        getUserPass in interface ISMTPConfiguration
        Returns:
        the SMTP password
      • setUserPass

        @Deprecated
        public void setUserPass​(java.lang.String userPass)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the password name for SMTP authentication.
        Specified by:
        setUserPass in interface ISMTPConfiguration
        Parameters:
        userPass - the password to set
      • setFromAddress

        @Deprecated
        public void setFromAddress​(java.lang.String fromAddress)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the From address for SMTP to the specified address.
        Specified by:
        setFromAddress in interface ISMTPConfiguration
        Parameters:
        fromAddress - the address from which emails will be sent
      • getReplyToAddress

        public java.lang.String getReplyToAddress()
        Description copied from interface: ISMTPConfiguration
        Returns the Reply-To address for sending emails.
        Specified by:
        getReplyToAddress in interface ISMTPConfiguration
        Returns:
        the address where replies should go
      • setReplyToAddress

        @Deprecated
        public void setReplyToAddress​(java.lang.String replyToAddress)
        Deprecated.
        Description copied from interface: ISMTPConfiguration
        Sets the Reply-To address for SMTP to the specified address. Set to null if no Reply-To headers should be included in emails.
        Specified by:
        setReplyToAddress in interface ISMTPConfiguration
        Parameters:
        replyToAddress - the address to which email replies should go, or null if no such header should be included