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 SmtpCommandcommand()Returns theSmtpCommandthat belongs to the request.java.util.List<java.lang.CharSequence>parameters()Returns aListwhich holds all the parameters of a request, which may be an empty list. 
 - 
 
- 
- 
Method Detail
- 
command
SmtpCommand command()
Returns theSmtpCommandthat belongs to the request. 
- 
parameters
java.util.List<java.lang.CharSequence> parameters()
Returns aListwhich holds all the parameters of a request, which may be an empty list. 
 - 
 
 -