Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Hibernate envers 3.6.3.Final. I can audit table and I can see the _audit table is populated with the revision_number, revision_type and entity data. I am making a history page, where I want to display all revision entries, so that when user clicks a revision id, then I can display the entity data along with revision type i.e. it is added, deleted or modified. I am trying to use AuditQuery, but I am not sure how to get the revision_type information for a given revision and a given entity class. Is is possible to do in AuditQuery ?

I can get the 'RevisionType' info by writing Hibernate query. But I want to reuse any existing framework api for this. In another way, I passed different 'RevisionType' as criteria to AuditQuery (i.e. multiple query for DELETE, INSERT and UPDATE) and check if I get any result, but this is not efficient way.

share|improve this question
@Boris Stitnicky Any reason why this -ve vote ? – Rabi Sep 10 '12 at 5:07
Because the questions should not be written as work orders. In other words, what have you tried? – Boris Stitnicky Sep 10 '12 at 5:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.