br.com.jhonsapp.email.session.properties.UserProperties 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 sender.
*
* @author Jhonathan Camacho
*
*/
public interface UserProperties {
/**
* Property file name.
*/
public static final String USER_PROPERTIES = "mail.properties";
/**
* Property file keys.
*/
public static final String usernameKey = "mail.username";
public static final String passwordKey = "mail.password";
public static final String typeKey = "mail.type";
/**
* Supported values in the "typeKey" key.
*/
public static final String GMAIL = "gmail";
public static final String HOTMAIL = "hotmail";
}