Package com.axelor.mail.db
Class MailFollower
- java.lang.Object
-
- com.axelor.db.Model
-
- com.axelor.auth.db.AuditableModel
-
- com.axelor.mail.db.MailFollower
-
@Entity public class MailFollower extends AuditableModel
The model to store followers details of a document.
-
-
Constructor Summary
Constructors Constructor Description MailFollower()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
MailAddress
getEmail()
Long
getId()
Long
getRelatedId()
String
getRelatedModel()
User
getUser()
int
hashCode()
void
setEmail(MailAddress email)
void
setId(Long id)
void
setRelatedId(Long relatedId)
void
setRelatedModel(String relatedModel)
void
setUser(User user)
String
toString()
-
Methods inherited from class com.axelor.auth.db.AuditableModel
getCreatedBy, getCreatedOn, getUpdatedBy, getUpdatedOn
-
Methods inherited from class com.axelor.db.Model
getArchived, getVersion, isSelected, setArchived, setSelected, setVersion
-
-
-
-
Method Detail
-
getRelatedId
public Long getRelatedId()
-
setRelatedId
public void setRelatedId(Long relatedId)
-
getRelatedModel
public String getRelatedModel()
-
setRelatedModel
public void setRelatedModel(String relatedModel)
-
getUser
public User getUser()
-
setUser
public void setUser(User user)
-
getEmail
public MailAddress getEmail()
-
setEmail
public void setEmail(MailAddress email)
-
-