I'm looking at Hibernate Envers to solve two problems for me. First is auditing, fine. Second is the ability to roll-back a change made in a revision. This will be implemented by
- Finding all the entities modified in a revision
- Finding the corresponding previous version of each entity
- Creating new versions that effectively reverse the changes made (new->delete,delete->new,update->update)
- Commit new objects
However I can't see a way of querying the list of entities for a particular revision. There's a method that does it at a class level but not a global level. Is this possible?