admin Confirmation before modify record

87 views Asked by At

I have a J2EE enterprise project. In the project we used Maven, Hibernate/JPA, Spring, ZK and other frameworks.

for the saving audits, i used hibernate envers. I want the upper user(ex: admin) to be able to confirm the record changes before they are finalized .(I know it is possible to use temporary tables like hibernate envers audition tables)

Is it possible to do this by customizing hibernate envers?

otherwise is there any framework for this work?

1

There are 1 answers

3
adamw On

Envers isn't a workflow library, so you can't implement any form of approval processes using it. It only audits data changes.

If you want a workflow, you should model this explicitly in the entities and/or use frameworks which help with that.