Class EventCommentReplyDto

java.lang.Object
org.opencastproject.event.comment.persistence.EventCommentReplyDto

@Entity(name="EventCommentReply") public class EventCommentReplyDto extends Object
Entity object for the comment replies.
  • Constructor Details

    • EventCommentReplyDto

      public EventCommentReplyDto()
      Default constructor
  • Method Details

    • from

      public static EventCommentReplyDto from(EventCommentReply reply)
    • getId

      public long getId()
      Returns the id of this entity
      Returns:
      the id as long
    • setText

      public void setText(String text)
      Sets the text
      Parameters:
      text - the text
    • getText

      public String getText()
      Returns the text
      Returns:
      the text
    • setCreationDate

      public void setCreationDate(Date creationDate)
      Sets the creation date
      Parameters:
      creationDate - the creation date
    • getCreationDate

      public Date getCreationDate()
      Returns the creation date
      Returns:
      the creation date
    • setModificationDate

      public void setModificationDate(Date modificationDate)
      Sets the modification date
      Parameters:
      modificationDate - the modification date
    • getModificationDate

      public Date getModificationDate()
      Returns the modification date
      Returns:
      the modification date
    • setAuthor

      public void setAuthor(String author)
      Sets the author
      Parameters:
      author - the author
    • getAuthor

      public String getAuthor()
      Returns the author
      Returns:
      the author
    • toCommentReply

      public EventCommentReply toCommentReply(UserDirectoryService userDirectoryService)
      Returns the business object of this comment reply
      Returns:
      the business object model of this comment reply