package org.mailster.smtp.core.auth;
/**
* Factory that creates {@link AuthenticationHandler}.
*
* @author Marco Trevisan <mrctrevisan@yahoo.it>
* @author De Oliveira Edouard <doe_wanted@yahoo.fr>
*/
public interface AuthenticationHandlerFactory
{
public AuthenticationHandler create();
}