Class Escalation

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

public class Escalation extends Object implements Serializable
Escalation details.
Since:
2.18
See Also:
  • Field Details

  • Constructor Details

    • Escalation

      public Escalation()
  • Method Details

    • getRequest

      public EscalationRequest getRequest()
      Gets the escalation request.
      Returns:
      The escalation request.
    • setRequest

      public void setRequest(EscalationRequest request)
      Sets the escalation request.
      Parameters:
      request - The escalation request.
    • getReview

      public EscalationReview getReview()
      Gets the escalation review.
      Returns:
      The escalation review.
    • setReview

      public void setReview(EscalationReview review)
      Sets the escalation review.
      Parameters:
      review - The escalation review.
    • getEscalatedArtifacts

      public List<EscalatedArtifact> getEscalatedArtifacts()
      Gets the list of escalated artifacts, creating it if it doesn't exist.
      Returns:
      The list of escalated artifacts.
    • addEscalatedArtifact

      public EscalatedArtifact addEscalatedArtifact(EscalatedArtifact a)
      Adds an escalated artifact to the list.
      Parameters:
      a - The escalated artifact to add.
      Returns:
      The added escalated artifact.
    • addEscalatedArtifact

      public EscalatedArtifact addEscalatedArtifact(Linkable<Artifact> link)
      Adds an escalated artifact to the list from a linkable artifact.
      Parameters:
      link - The linkable artifact.
      Returns:
      The added escalated artifact.