All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.subethamail.smtp.server.Command Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
package org.subethamail.smtp.server;

import java.io.IOException;

/**
 * Describes a SMTP command
 *
 * @author Jon Stevens
 * @author Scott Hernandez
 */
public interface Command
{
	/** */
	public void execute(String commandString, Session sess) throws IOException;

	/** */
	public HelpMessage getHelp() throws CommandException;

	/** */
	public String getName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy