Package oracle.iam.reconciliation.vo
Class ReconHistory
java.lang.Object
oracle.iam.reconciliation.vo.ReconHistory
- All Implemented Interfaces:
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 Summary
ConstructorsConstructorDescriptionConstructor: constructs an empty instance of Event History.ReconHistory
(Long reKey, String action) Constructor, constructs an instance of Event History given the Event Key and initial Action. -
Method Summary
Modifier and TypeMethodDescriptiongetReKey()
Gets the Event Key.Gets the name of the action performed on the Event.getRhKey()
Gets the Key of the Recon History row.Gets the ID of the last modifier of the History of this Event.Gets the User who last modified the Event from the Event History.Gets the Date of last History Update.Gets the Note attached to the Event from its History.Get the Status of the Event from the History.void
Set the Key of the Event which history is being accessed.void
setRhActionPerformed
(String rhActionPerformed) Set the last Action performed on this Event.void
Set the key of the Recon History row.void
setRhModifier
(Long rhModifier) Set the ID of the last modifier of the Event History.void
setRhModifierUser
(User rhModifierUser) Set the User modifier in Event History.void
setRhModify
(Date rhModify) Set the Date of last History update.void
Sets the Note to attach to the Event History.void
setRhStatus
(String rhStatus) Sets the status of the Event in its History.
-
Constructor Details
-
ReconHistory
public ReconHistory()Constructor: constructs an empty instance of Event History. -
ReconHistory
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
Gets the Event Key.- Returns:
- a Long.
-
getRhActionPerformed
Gets the name of the action performed on the Event.- Returns:
- a String.
-
getRhKey
Gets the Key of the Recon History row.- Returns:
- a Long.
-
getRhModifier
Gets the ID of the last modifier of the History of this Event.- Returns:
- a Long.
-
getRhModify
Gets the Date of last History Update.- Returns:
- a Date.
-
setReKey
Set the Key of the Event which history is being accessed.- Parameters:
reKey
- the ID of the Event.
-
setRhActionPerformed
Set the last Action performed on this Event.- Parameters:
rhActionPerformed
- the name of the performed action.
-
setRhKey
Set the key of the Recon History row.- Parameters:
rhKey
- the History key.
-
setRhModifier
Set the ID of the last modifier of the Event History.- Parameters:
rhModifier
- the Modifier's ID.
-
setRhModify
Set the Date of last History update.- Parameters:
rhModify
- the Date of last update.
-
getRhStatus
Get the Status of the Event from the History.- Returns:
- a String.
-
setRhStatus
Sets the status of the Event in its History.- Parameters:
rhStatus
- the Status.
-
getRhNote
Gets the Note attached to the Event from its History.- Returns:
- a String.
-
setRhNote
Sets the Note to attach to the Event History.- Parameters:
rhNote
- a String sentence.
-
setRhModifierUser
Set the User modifier in Event History.- Parameters:
rhModifierUser
- an instance ofUser
representing the User who last modified the Event.
-
getRhModifierUser
Gets the User who last modified the Event from the Event History.- Returns:
- an instance of
User
.
-