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