public interface CsCommentData
Modifier and Type | Method and Description |
---|---|
java.util.Date |
getCreateDate()
Get the comment's creation date.
|
java.lang.String |
getMessage()
Get the text of the comment.
|
UserData |
getUser()
Get the comment's author.
|
void |
setCreateDate(java.util.Date date)
Set the comment's creation date.
|
void |
setMessage(java.lang.String message)
Set the text of the comment.
|
void |
setUser(UserData user)
Set the comment's author.
|
java.lang.String getMessage()
void setMessage(java.lang.String message)
message
- the new textUserData getUser()
void setUser(UserData user)
This field should not be set by client code. When creating or updating a comment, it is ignored: the user who requested the comment creation is set as its author.
java.util.Date getCreateDate()
void setCreateDate(java.util.Date date)
This field should not be set by client code. When creating or updating a comment, it is ignored: the date when the comment was created is set as its creation date.