Class MailMessage
- java.lang.Object
-
- org.apache.openmeetings.db.entity.HistoricalEntity
-
- org.apache.openmeetings.db.entity.basic.MailMessage
-
- All Implemented Interfaces:
Serializable,IDataProviderEntity
@Entity public class MailMessage extends HistoricalEntity
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMailMessage.Status
-
Constructor Summary
Constructors Constructor Description MailMessage()MailMessage(String recipients, String replyTo, String subject, String body)MailMessage(String recipients, String replyTo, String subject, String body, org.apache.openmeetings.util.mail.IcalHandler ical)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBody()intgetErrorCount()byte[]getIcs()StringgetIcsMethod()LonggetId()StringgetLastError()StringgetRecipients()StringgetReplyTo()MailMessage.StatusgetStatus()StringgetSubject()voidsetBody(String body)voidsetErrorCount(int errorCount)voidsetIcs(byte[] ics)voidsetId(Long id)voidsetLastError(String lastError)voidsetRecipients(String recipients)voidsetReplyTo(String replyTo)voidsetStatus(MailMessage.Status status)voidsetSubject(String subject)-
Methods inherited from class org.apache.openmeetings.db.entity.HistoricalEntity
getInserted, getUpdated, isDeleted, setDeleted, setInserted, setUpdated
-
-
-
-
Method Detail
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getRecipients
public String getRecipients()
-
setRecipients
public void setRecipients(String recipients)
-
getReplyTo
public String getReplyTo()
-
setReplyTo
public void setReplyTo(String replyTo)
-
getSubject
public String getSubject()
-
setSubject
public void setSubject(String subject)
-
getBody
public String getBody()
-
setBody
public void setBody(String body)
-
getStatus
public MailMessage.Status getStatus()
-
setStatus
public void setStatus(MailMessage.Status status)
-
getIcs
public byte[] getIcs()
-
setIcs
public void setIcs(byte[] ics)
-
getErrorCount
public int getErrorCount()
-
setErrorCount
public void setErrorCount(int errorCount)
-
getLastError
public String getLastError()
-
setLastError
public void setLastError(String lastError)
-
getIcsMethod
public String getIcsMethod()
-
-