Interface CommentInstance
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
CommentInstanceImpl
public interface CommentInstance extends Serializable
Represents single case comment instance that can be attached to a case at any time by case participants
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAuthor()Author of the commentStringgetComment()Actual comment testDategetCreatedAt()Exact date at which comment was added.StringgetId()Returns unique id assigned to this commentList<String>getRestrictedTo()List of case roles given comment is restricted to
-
-
-
Method Detail
-
getId
String getId()
Returns unique id assigned to this comment- Returns:
- id of the comment
-
getCreatedAt
Date getCreatedAt()
Exact date at which comment was added.- Returns:
- created at date
-
getAuthor
String getAuthor()
Author of the comment- Returns:
- id of the author
-
getComment
String getComment()
Actual comment test- Returns:
- the comment
-
-