Class ReconHistory

java.lang.Object
oracle.iam.reconciliation.vo.ReconHistory
All Implemented Interfaces:
Serializable

public class ReconHistory extends Object implements Serializable
This class encapsulates the whole history of a given Reconciliation Event. It provides access to all actions performed on the Event as well as the date and time of these actions.
See Also:
  • Constructor Details

    • ReconHistory

      public ReconHistory()
      Constructor: constructs an empty instance of Event History.
    • ReconHistory

      public ReconHistory(Long reKey, String action)
      Constructor, constructs an instance of Event History given the Event Key and initial Action.
      Parameters:
      reKey - the ID of the Event which History is being created.
      action - the initial action undertaken on this Event.
  • Method Details

    • getReKey

      public Long getReKey()
      Gets the Event Key.
      Returns:
      a Long.
    • getRhActionPerformed

      public String getRhActionPerformed()
      Gets the name of the action performed on the Event.
      Returns:
      a String.
    • getRhKey

      public Long getRhKey()
      Gets the Key of the Recon History row.
      Returns:
      a Long.
    • getRhModifier

      public Long getRhModifier()
      Gets the ID of the last modifier of the History of this Event.
      Returns:
      a Long.
    • getRhModify

      public Date getRhModify()
      Gets the Date of last History Update.
      Returns:
      a Date.
    • setReKey

      public void setReKey(Long reKey)
      Set the Key of the Event which history is being accessed.
      Parameters:
      reKey - the ID of the Event.
    • setRhActionPerformed

      public void setRhActionPerformed(String rhActionPerformed)
      Set the last Action performed on this Event.
      Parameters:
      rhActionPerformed - the name of the performed action.
    • setRhKey

      public void setRhKey(Long rhKey)
      Set the key of the Recon History row.
      Parameters:
      rhKey - the History key.
    • setRhModifier

      public void setRhModifier(Long rhModifier)
      Set the ID of the last modifier of the Event History.
      Parameters:
      rhModifier - the Modifier's ID.
    • setRhModify

      public void setRhModify(Date rhModify)
      Set the Date of last History update.
      Parameters:
      rhModify - the Date of last update.
    • getRhStatus

      public String getRhStatus()
      Get the Status of the Event from the History.
      Returns:
      a String.
    • setRhStatus

      public void setRhStatus(String rhStatus)
      Sets the status of the Event in its History.
      Parameters:
      rhStatus - the Status.
    • getRhNote

      public String getRhNote()
      Gets the Note attached to the Event from its History.
      Returns:
      a String.
    • setRhNote

      public void setRhNote(String rhNote)
      Sets the Note to attach to the Event History.
      Parameters:
      rhNote - a String sentence.
    • setRhModifierUser

      public void setRhModifierUser(User rhModifierUser)
      Set the User modifier in Event History.
      Parameters:
      rhModifierUser - an instance of User representing the User who last modified the Event.
    • getRhModifierUser

      public User getRhModifierUser()
      Gets the User who last modified the Event from the Event History.
      Returns:
      an instance of User.