
org.subethamail.smtp.server.Command Maven / Gradle / Ivy
package org.subethamail.smtp.server;
import java.io.IOException;
/**
* Describes a SMTP command
*
* @author Jon Stevens
*/
public interface Command
{
public void execute(String commandString, ConnectionContext context) throws IOException;
public HelpMessage getHelp(String commandName) throws CommandException;
public String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy