public class ReconHistory
extends java.lang.Object
implements java.io.Serializable
Constructor and Description |
---|
ReconHistory()
Constructor: constructs an empty instance of Event History.
|
ReconHistory(java.lang.Long reKey,
java.lang.String action)
Constructor, constructs an instance of Event History given the Event Key
and initial Action.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Long |
getReKey()
Gets the Event Key.
|
java.lang.String |
getRhActionPerformed()
Gets the name of the action performed on the Event.
|
java.lang.Long |
getRhKey()
Gets the Key of the Recon History row.
|
java.lang.Long |
getRhModifier()
Gets the ID of the last modifier of the History of this Event.
|
User |
getRhModifierUser()
Gets the User who last modified the Event from the Event History.
|
java.util.Date |
getRhModify()
Gets the Date of last History Update.
|
java.lang.String |
getRhNote()
Gets the Note attached to the Event from its History.
|
java.lang.String |
getRhStatus()
Get the Status of the Event from the History.
|
void |
setReKey(java.lang.Long reKey)
Set the Key of the Event which history is being accessed.
|
void |
setRhActionPerformed(java.lang.String rhActionPerformed)
Set the last Action performed on this Event.
|
void |
setRhKey(java.lang.Long rhKey)
Set the key of the Recon History row.
|
void |
setRhModifier(java.lang.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(java.util.Date rhModify)
Set the Date of last History update.
|
void |
setRhNote(java.lang.String rhNote)
Sets the Note to attach to the Event History.
|
void |
setRhStatus(java.lang.String rhStatus)
Sets the status of the Event in its History.
|
public ReconHistory()
public ReconHistory(java.lang.Long reKey, java.lang.String action)
reKey
- the ID of the Event which History is being created.action
- the initial action undertaken on this Event.public java.lang.Long getReKey()
public java.lang.String getRhActionPerformed()
public java.lang.Long getRhKey()
public java.lang.Long getRhModifier()
public java.util.Date getRhModify()
public void setReKey(java.lang.Long reKey)
reKey
- the ID of the Event.public void setRhActionPerformed(java.lang.String rhActionPerformed)
rhActionPerformed
- the name of the performed action.public void setRhKey(java.lang.Long rhKey)
rhKey
- the History key.public void setRhModifier(java.lang.Long rhModifier)
rhModifier
- the Modifier's ID.public void setRhModify(java.util.Date rhModify)
rhModify
- the Date of last update.public java.lang.String getRhStatus()
public void setRhStatus(java.lang.String rhStatus)
rhStatus
- the Status.public java.lang.String getRhNote()
public void setRhNote(java.lang.String rhNote)
rhNote
- a String sentence.public void setRhModifierUser(User rhModifierUser)
rhModifierUser
- an instance of User
representing the User who last modified the Event.