Interface ICommentEntry

All Superinterfaces:
Serializable

public interface ICommentEntry extends Serializable
Represents a single comment.
Since:
9.2
Author:
a.pragt
  • Method Details

    • getId

      long getId()
      Returns the id of the comment.
      Returns:
      The comment id, never null.
    • getApplicationId

      String getApplicationId()
      Returns the id of the application.
      Returns:
      The applicationId, never null.
    • getReferenceId

      String getReferenceId()
      Returns the reference id.
      Returns:
      The referenceId, never null.
    • getDate

      Date getDate()
      Returns the date of insertion.
      Returns:
      The insertion date, never null.
    • getUserId

      String getUserId()
      Returns the id of the user.
      Returns:
      The user id, never null.
    • getTitle

      IMultilingualText getTitle()
      The title of the comment.
      Returns:
      The comment title, never null.
    • getComment

      String getComment()
      The comment.
      Returns:
      The comment, never null.