
org.subethamail.smtp.server.ConnectionContext 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!
package org.subethamail.smtp.server;
import java.io.IOException;
import java.net.Socket;
/**
* This context is used for managing information
* about a connection.
*
* @author Jon Stevens
*/
public interface ConnectionContext
{
public Session getSession();
public ConnectionHandler getConnection();
public SMTPServer getServer();
public Socket getSocket();
public void sendResponse(String response) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy