Class DefaultSmtpRequest

    • Constructor Summary

      Constructors 
      Constructor Description
      DefaultSmtpRequest​(SmtpCommand command)
      Creates a new instance with the given command and no parameters.
      DefaultSmtpRequest​(SmtpCommand command, java.lang.CharSequence... parameters)
      Creates a new instance with the given command and parameters.
      DefaultSmtpRequest​(java.lang.CharSequence command, java.lang.CharSequence... parameters)
      Creates a new instance with the given command and parameters.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      SmtpCommand command()
      Returns the SmtpCommand that belongs to the request.
      boolean equals​(java.lang.Object o)  
      int hashCode()  
      java.util.List<java.lang.CharSequence> parameters()
      Returns a List which holds all the parameters of a request, which may be an empty list.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

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

      • DefaultSmtpRequest

        public DefaultSmtpRequest​(SmtpCommand command)
        Creates a new instance with the given command and no parameters.
      • DefaultSmtpRequest

        public DefaultSmtpRequest​(SmtpCommand command,
                                  java.lang.CharSequence... parameters)
        Creates a new instance with the given command and parameters.
      • DefaultSmtpRequest

        public DefaultSmtpRequest​(java.lang.CharSequence command,
                                  java.lang.CharSequence... parameters)
        Creates a new instance with the given command and parameters.
    • Method Detail

      • parameters

        public java.util.List<java.lang.CharSequence> parameters()
        Description copied from interface: SmtpRequest
        Returns a List which holds all the parameters of a request, which may be an empty list.
        Specified by:
        parameters in interface SmtpRequest
      • 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