
org.subethamail.smtp.server.ServerSocketCreator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subethasmtp Show documentation
Show all versions of subethasmtp Show documentation
A fork of a fork (!) of SubEtha, an easy-to-use server-side SMTP library for Java.
package org.subethamail.smtp.server;
import java.io.IOException;
import java.net.ServerSocket;
public interface ServerSocketCreator {
/**
* Returns an unbound server socket.
*
* @return server socket
* @throws IOException
*/
ServerSocket createServerSocket() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy