I am trying to implement auditing of entity using spring data envers. I am able to obtain all or single Revision object for entity as
Revisions<Integer, User> revisions = userRepository.findRevisions(id);
I want to get REVTYPE value for particular revision but I don't find any method in Revision
class. I can see value of REVTYPE in user_aud table.
How can I get REVTYPE of a Revision?
Thanks.