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