I'm working on a simple CRUD application based on vert.x platform. I'm using Rhino/JavaScript for the backend part which allows me to use Java classes. So, Hibernate is my ORM there. I use "dynamic-map" as entity mode which allows me to work with HashMaps instead of Java classes for persistent objects.
The quiestions is how to implement entity/row-level access control in this architecture.
I've read something about interceptors, but I didn't get how to filter un-allowed content there (throw an exception?). Using filters is also an option, but as I understood I can control only querying, not persisting with them.
The only solution I've found for now is to filter data during pre-/post-processing, but I affraid that it could be a performance bottleneck there.