Class RestMailConfiguration
- java.lang.Object
-
- com.atlassian.bamboo.rest.model.AbstractRestModel
-
- com.atlassian.bamboo.rest.model.admin.mail.RestMailConfiguration
-
public class RestMailConfiguration extends AbstractRestModel
Data model for mail configuration- Since:
- 5.10
-
-
Field Summary
-
Fields inherited from class com.atlassian.bamboo.rest.model.AbstractRestModel
self
-
-
Constructor Summary
Constructors Constructor Description RestMailConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEmailSetting()
String
getFromAddress()
String
getJndiLocation()
String
getName()
String
getSmtpPassword()
String
getSmtpPort()
String
getSmtpServer()
String
getSmtpUsername()
String
getSubjectPrefix()
Boolean
isPrecedenceBulkHeaderExcluded()
Boolean
isTlsEnabled()
void
setEmailSetting(String setting)
void
setFromAddress(String fromAddress)
void
setJndiLocation(String jndiLocation)
void
setName(String name)
void
setPrecedenceBulkHeaderExcluded(Boolean precedenceBulkHeaderExcluded)
void
setSmtpPassword(String smtpPassword)
void
setSmtpPort(String smtpPort)
void
setSmtpServer(String smtpServer)
void
setSmtpUsername(String smtpUsername)
void
setSubjectPrefix(String subjectPrefix)
void
setTlsEnabled(Boolean tlsEnabled)
-
Methods inherited from class com.atlassian.bamboo.rest.model.AbstractRestModel
getSelf, setSelf
-
-
-
-
Method Detail
-
setName
public void setName(String name)
-
setFromAddress
public void setFromAddress(String fromAddress)
-
setSubjectPrefix
public void setSubjectPrefix(String subjectPrefix)
-
setPrecedenceBulkHeaderExcluded
public void setPrecedenceBulkHeaderExcluded(Boolean precedenceBulkHeaderExcluded)
-
setEmailSetting
public void setEmailSetting(String setting)
-
setSmtpServer
public void setSmtpServer(String smtpServer)
-
setSmtpPort
public void setSmtpPort(String smtpPort)
-
setSmtpUsername
public void setSmtpUsername(String smtpUsername)
-
setSmtpPassword
public void setSmtpPassword(String smtpPassword)
-
setTlsEnabled
public void setTlsEnabled(Boolean tlsEnabled)
-
setJndiLocation
public void setJndiLocation(String jndiLocation)
-
getName
public String getName()
-
getFromAddress
public String getFromAddress()
-
getSubjectPrefix
public String getSubjectPrefix()
-
isPrecedenceBulkHeaderExcluded
public Boolean isPrecedenceBulkHeaderExcluded()
-
getEmailSetting
public String getEmailSetting()
-
getSmtpServer
public String getSmtpServer()
-
getSmtpPort
public String getSmtpPort()
-
getSmtpUsername
public String getSmtpUsername()
-
getSmtpPassword
public String getSmtpPassword()
-
isTlsEnabled
public Boolean isTlsEnabled()
-
getJndiLocation
public String getJndiLocation()
-
-