Package io.netty.handler.codec.smtp
Interface SmtpRequest
-
- All Known Implementing Classes:
DefaultSmtpRequest
@UnstableApi public interface SmtpRequest
An SMTP request.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SmtpCommand
command()
Returns theSmtpCommand
that belongs to the request.java.util.List<java.lang.CharSequence>
parameters()
Returns aList
which holds all the parameters of a request, which may be an empty list.
-
-
-
Method Detail
-
command
SmtpCommand command()
Returns theSmtpCommand
that belongs to the request.
-
parameters
java.util.List<java.lang.CharSequence> parameters()
Returns aList
which holds all the parameters of a request, which may be an empty list.
-
-