br.com.jhonsapp.email.session.properties.ServerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of email-dispatcher Show documentation
Show all versions of email-dispatcher Show documentation
Email Dispatcher is an open source project created by Jhonys Camacho and Jhonathan Camacho to facilitate the sending of emails.
package br.com.jhonsapp.email.session.properties;
/**
*
* This interface is used to standardize the keys and values required for the
* configuration of the email provider.
*
* @author Jhonathan Camacho
*
*/
public interface ServerProperties {
/**
* Property file name.
*/
public static final String SERVER_PROPERTIES_GMAIL = "mail_gmail_config.properties";
public static final String SERVER_PROPERTIES_HOTMAIL = "mail_hotmail_config.properties";
/**
* Property file keys.
*/
public static final String hostKey = "mail.server.host";
public static final String portKey = "mail.server.port";
public static final String sslKey = "mail.enable.ssl";
public static final String authKey = "mail.auth";
}