Class SendmailProtocol
- java.lang.Object
-
- org.opennms.netmgt.config.mailtransporttest.SendmailProtocol
-
- All Implemented Interfaces:
Serializable
public class SendmailProtocol extends Object implements Serializable
Basically attributes that help setup the javamailer's confusion set of properties.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SendmailProtocol()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getCharSet()
String
getMailer()
String
getMessageContentType()
String
getMessageEncoding()
Boolean
getQuitWait()
Boolean
getSslEnable()
Boolean
getStartTls()
String
getTransport()
int
hashCode()
void
setCharSet(String charSet)
void
setMailer(String mailer)
void
setMessageContentType(String messageContentType)
void
setMessageEncoding(String messageEncoding)
void
setQuitWait(Boolean quitWait)
void
setSslEnable(Boolean sslEnable)
void
setStartTls(Boolean startTls)
void
setTransport(String transport)
-
-
-
Method Detail
-
getCharSet
public String getCharSet()
-
setCharSet
public void setCharSet(String charSet)
-
getMailer
public String getMailer()
-
setMailer
public void setMailer(String mailer)
-
getMessageContentType
public String getMessageContentType()
-
setMessageContentType
public void setMessageContentType(String messageContentType)
-
getMessageEncoding
public String getMessageEncoding()
-
setMessageEncoding
public void setMessageEncoding(String messageEncoding)
-
getQuitWait
public Boolean getQuitWait()
-
setQuitWait
public void setQuitWait(Boolean quitWait)
-
getTransport
public String getTransport()
-
setTransport
public void setTransport(String transport)
-
getSslEnable
public Boolean getSslEnable()
-
setSslEnable
public void setSslEnable(Boolean sslEnable)
-
getStartTls
public Boolean getStartTls()
-
setStartTls
public void setStartTls(Boolean startTls)
-
-