Class MailQueueEntity
- java.lang.Object
-
- org.exoplatform.commons.notification.impl.jpa.email.entity.MailQueueEntity
-
@Entity(name="NotificationsMailQueueEntity") public class MailQueueEntity extends Object
-
-
Constructor Summary
Constructors Constructor Description MailQueueEntity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBody()CalendargetCreationDate()StringgetFooter()StringgetFrom()longgetId()StringgetSubject()StringgetTo()StringgetType()MailQueueEntitysetBody(String body)MailQueueEntitysetCreationDate(Calendar creationDate)MailQueueEntitysetFooter(String footer)MailQueueEntitysetFrom(String from)MailQueueEntitysetSubject(String subject)MailQueueEntitysetTo(String to)MailQueueEntitysetType(String type)
-
-
-
Method Detail
-
getId
public long getId()
-
getCreationDate
public Calendar getCreationDate()
-
setCreationDate
public MailQueueEntity setCreationDate(Calendar creationDate)
-
getType
public String getType()
-
setType
public MailQueueEntity setType(String type)
-
getFrom
public String getFrom()
-
setFrom
public MailQueueEntity setFrom(String from)
-
getTo
public String getTo()
-
setTo
public MailQueueEntity setTo(String to)
-
getSubject
public String getSubject()
-
setSubject
public MailQueueEntity setSubject(String subject)
-
getBody
public String getBody()
-
setBody
public MailQueueEntity setBody(String body)
-
getFooter
public String getFooter()
-
setFooter
public MailQueueEntity setFooter(String footer)
-
-