public interface Comment
extends java.io.Serializable
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAuthorId()
Returns the user who posted the comment.
|
java.lang.String |
getCommentText()
Returns the content text of the comment
|
java.util.Date |
getCreationDate()
Returns the date on which the comment was posted.
|
java.lang.String |
getId()
Returns a unique ID for this comment.
|
boolean |
isDeleteable()
Returns whether this comment can be deleted by the current user.
|
java.lang.String getId()
java.lang.String getCommentText()
java.util.Date getCreationDate()
java.lang.String getAuthorId()
boolean isDeleteable()
true
if the comment can be deleted by the current user,
false
otherwise.