Package org.cyclos.entities.system
Class SmtpConfiguration
- java.lang.Object
-
- org.cyclos.entities.system.SmtpConfiguration
-
@Embeddable public class SmtpConfiguration extends Object
Contains the configurations for sending e-mails
-
-
Constructor Summary
Constructors Constructor Description SmtpConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFromAddress()StringgetHost()IntegergetMaxRecipients()StringgetPassword()IntegergetPort()SmtpSecuritygetSecurity()StringgetUser()booleanisPasswordSet()voidsetFromAddress(String fromAddress)voidsetHost(String host)voidsetMaxRecipients(Integer maxRecipients)voidsetPassword(String password)voidsetPort(Integer port)voidsetSecurity(SmtpSecurity security)voidsetUser(String user)
-
-
-
Method Detail
-
getFromAddress
public String getFromAddress()
-
getHost
public String getHost()
-
getMaxRecipients
public Integer getMaxRecipients()
-
getPassword
public String getPassword()
-
getPort
public Integer getPort()
-
getSecurity
public SmtpSecurity getSecurity()
-
getUser
public String getUser()
-
isPasswordSet
public boolean isPasswordSet()
-
setFromAddress
public void setFromAddress(String fromAddress)
-
setHost
public void setHost(String host)
-
setMaxRecipients
public void setMaxRecipients(Integer maxRecipients)
-
setPassword
public void setPassword(String password)
-
setPort
public void setPort(Integer port)
-
setSecurity
public void setSecurity(SmtpSecurity security)
-
setUser
public void setUser(String user)
-
-