Class DefaultSmtpResponse

    • Constructor Summary

      Constructors 
      Constructor Description
      DefaultSmtpResponse​(int code)
      Creates a new instance with the given smtp code and no details.
      DefaultSmtpResponse​(int code, java.lang.CharSequence... details)
      Creates a new instance with the given smtp code and details.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int code()
      Returns the response code.
      java.util.List<java.lang.CharSequence> details()
      Returns the details if any.
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • DefaultSmtpResponse

        public DefaultSmtpResponse​(int code)
        Creates a new instance with the given smtp code and no details.
      • DefaultSmtpResponse

        public DefaultSmtpResponse​(int code,
                                   java.lang.CharSequence... details)
        Creates a new instance with the given smtp code and details.
    • Method Detail

      • code

        public int code()
        Description copied from interface: SmtpResponse
        Returns the response code.
        Specified by:
        code in interface SmtpResponse
      • details

        public java.util.List<java.lang.CharSequence> details()
        Description copied from interface: SmtpResponse
        Returns the details if any.
        Specified by:
        details in interface SmtpResponse
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object