
org.jresearch.commons.base.mail.IMailSettings Maven / Gradle / Ivy
The newest version!
/**
*
*/
package org.jresearch.commons.base.mail;
/**
* @author kot
*
*/
public interface IMailSettings extends Cloneable {
String getHost();
String getFrom();
String getUsername();
String getPassword();
int getPort();
boolean isUseTls();
IMailSettings clone() throws CloneNotSupportedException;
boolean isCorrect();
String getErrorTo();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy