Package com.fluig.sdk.api.social
Class CommentVO
- java.lang.Object
-
- com.fluig.sdk.api.social.CommentVO
-
- All Implemented Interfaces:
Serializable
public class CommentVO extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CommentVO()
CommentVO(Long sociableId, Long sociableParentId, String comment, Date creationDate, Date updateDate, String commentWithoutMention, boolean mention, Map<String,String> mentions, Map<String,String> customData, String userName, String userAlias)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
String
getComment()
String
getCommentWithoutMention()
Date
getCreationDate()
Map<String,String>
getCustomData()
Map<String,String>
getMentions()
Long
getSociableId()
Long
getSociableParentId()
Date
getUpdateDate()
String
getUserAlias()
String
getUserName()
int
hashCode()
boolean
isMention()
void
setComment(String comment)
void
setCommentWithoutMention(String commentWithoutMention)
void
setCreationDate(Date creationDate)
void
setCustomData(Map<String,String> customData)
void
setMention(boolean mention)
void
setMentions(Map<String,String> mentions)
void
setSociableId(Long sociableId)
void
setSociableParentId(Long sociableParentId)
void
setUpdateDate(Date updateDate)
void
setUserAlias(String userAlias)
void
setUserName(String userName)
String
toString()
-
-
-
Method Detail
-
getSociableId
public Long getSociableId()
-
setSociableId
public void setSociableId(Long sociableId)
-
getComment
public String getComment()
-
setComment
public void setComment(String comment)
-
getCreationDate
public Date getCreationDate()
-
setCreationDate
public void setCreationDate(Date creationDate)
-
getUpdateDate
public Date getUpdateDate()
-
setUpdateDate
public void setUpdateDate(Date updateDate)
-
getCommentWithoutMention
public String getCommentWithoutMention()
-
setCommentWithoutMention
public void setCommentWithoutMention(String commentWithoutMention)
-
isMention
public boolean isMention()
-
setMention
public void setMention(boolean mention)
-
getUserName
public String getUserName()
-
setUserName
public void setUserName(String userName)
-
getUserAlias
public String getUserAlias()
-
setUserAlias
public void setUserAlias(String userAlias)
-
getSociableParentId
public Long getSociableParentId()
-
setSociableParentId
public void setSociableParentId(Long sociableParentId)
-
-