Class ReadmailConfig
- java.lang.Object
-
- org.opennms.netmgt.config.javamail.ReadmailConfig
-
- All Implemented Interfaces:
Serializable
public class ReadmailConfig extends Object implements Serializable
The Class ReadmailConfig.- Author:
- Alejandro Galue
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ReadmailConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Long
getAttemptInterval()
List<JavamailProperty>
getJavamailProperties()
String
getMailFolder()
String
getName()
ReadmailHost
getReadmailHost()
UserAuth
getUserAuth()
int
hashCode()
Boolean
isDebug()
Boolean
isDeleteAllMail()
void
setAttemptInterval(Long attemptInterval)
void
setDebug(Boolean debug)
void
setDeleteAllMail(Boolean deleteAllMail)
void
setJavamailProperties(List<JavamailProperty> properties)
void
setMailFolder(String mailFolder)
void
setName(String name)
void
setReadmailHost(ReadmailHost readmailHost)
void
setUserAuth(UserAuth userAuth)
-
-
-
Method Detail
-
isDebug
public Boolean isDebug()
-
setDebug
public void setDebug(Boolean debug)
-
getMailFolder
public String getMailFolder()
-
setMailFolder
public void setMailFolder(String mailFolder)
-
getAttemptInterval
public Long getAttemptInterval()
-
setAttemptInterval
public void setAttemptInterval(Long attemptInterval)
-
isDeleteAllMail
public Boolean isDeleteAllMail()
-
setDeleteAllMail
public void setDeleteAllMail(Boolean deleteAllMail)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getJavamailProperties
public List<JavamailProperty> getJavamailProperties()
-
setJavamailProperties
public void setJavamailProperties(List<JavamailProperty> properties)
-
getReadmailHost
public ReadmailHost getReadmailHost()
-
setReadmailHost
public void setReadmailHost(ReadmailHost readmailHost)
-
getUserAuth
public UserAuth getUserAuth()
-
setUserAuth
public void setUserAuth(UserAuth userAuth)
-
-