
org.subethamail.smtp.server.AbstractMessageHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp-smtp Show documentation
Show all versions of subethasmtp-smtp Show documentation
A multithreaded standalone SMTP mail server implementation.
The newest version!
/*
* $Id: AbstractMessageHandler.java 86 2006-10-01 07:51:48Z lhoriman $
* $URL: http://subethasmtp.tigris.org/svn/subethasmtp/tags/1.2/smtp/src/org/subethamail/smtp/server/AbstractMessageHandler.java $
*/
package org.subethamail.smtp.server;
import org.subethamail.smtp.MessageHandler;
import org.subethamail.smtp.RejectException;
/**
* A simple base class to make implementing message handlers easier. It
* also makes modification of the interface class easier on users.
*
* @author Jeff Schnitzer
*/
abstract public class AbstractMessageHandler implements MessageHandler
{
public void from(String from) throws RejectException
{
}
public void recipient(String recipient) throws RejectException
{
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy