Class EscalationRequest

java.lang.Object
com.genologics.ri.step.EscalationRequest
All Implemented Interfaces:
Serializable

public class EscalationRequest extends Object implements Serializable
Represents an escalation request in a step.
Since:
2.18
See Also:
  • Field Details

    • author

      protected UserLink author
      The author of the escalation request.
    • reviewer

      protected UserLink reviewer
      The reviewer of the escalation request.
    • date

      protected Date date
      The date of the escalation request.
    • comment

      protected String comment
      Comment for the escalation request.
  • Constructor Details

    • EscalationRequest

      public EscalationRequest()
  • Method Details

    • getAuthor

      public UserLink getAuthor()
      Gets the author.
      Returns:
      The author.
    • setAuthor

      public void setAuthor(Linkable<Researcher> link)
      Sets the author.
      Parameters:
      link - The linkable researcher.
    • getReviewer

      public UserLink getReviewer()
      Gets the reviewer.
      Returns:
      The reviewer.
    • setReviewer

      public void setReviewer(Linkable<Researcher> link)
      Sets the reviewer.
      Parameters:
      link - The linkable researcher.
    • getDate

      public Date getDate()
      Gets the date.
      Returns:
      The date.
    • setDate

      public void setDate(Date date)
      Sets the date.
      Parameters:
      date - The date.
    • getComment

      public String getComment()
      Gets the comment.
      Returns:
      The comment.
    • setComment

      public void setComment(String comment)
      Sets the comment.
      Parameters:
      comment - The comment.