Package io.netty.handler.codec.smtp
Class DefaultSmtpResponse
- java.lang.Object
-
- io.netty.handler.codec.smtp.DefaultSmtpResponse
-
- All Implemented Interfaces:
SmtpResponse
@UnstableApi public final class DefaultSmtpResponse extends java.lang.Object implements SmtpResponse
DefaultSmtpResponse
implementation.
-
-
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()
-
-
-
Method Detail
-
code
public int code()
Description copied from interface:SmtpResponse
Returns the response code.- Specified by:
code
in interfaceSmtpResponse
-
details
public java.util.List<java.lang.CharSequence> details()
Description copied from interface:SmtpResponse
Returns the details if any.- Specified by:
details
in interfaceSmtpResponse
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-