Package com.strongdm.api
Class AccountHistory
java.lang.Object
com.strongdm.api.AccountHistory
AccountHistory records the state of an Account at a given point in time,
where every change (create, update and delete) to an Account produces an
AccountHistory record.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe complete Account state at this time.The unique identifier of the Activity that produced this change to the Account.If this Account was deleted, the time it was deleted.The time at which the Account state was recorded.voidsetAccount(Account in) The complete Account state at this time.voidsetActivityId(String in) The unique identifier of the Activity that produced this change to the Account.voidsetDeletedAt(Date in) If this Account was deleted, the time it was deleted.voidsetTimestamp(Date in) The time at which the Account state was recorded.
-
Constructor Details
-
AccountHistory
public AccountHistory()
-
-
Method Details
-
getAccount
The complete Account state at this time. -
setAccount
The complete Account state at this time. -
getActivityId
The unique identifier of the Activity that produced this change to the Account. May be empty for some system-initiated updates. -
setActivityId
The unique identifier of the Activity that produced this change to the Account. May be empty for some system-initiated updates. -
getDeletedAt
If this Account was deleted, the time it was deleted. -
setDeletedAt
If this Account was deleted, the time it was deleted. -
getTimestamp
The time at which the Account state was recorded. -
setTimestamp
The time at which the Account state was recorded.
-