I want to create a Google App Enginge + GWT application that implements Access Control Lists (ACL) for resource management etc. Just a standard non-authenticated user/basic user/manager user/admin type thing. The user's account/user type would then determine their access to certain functionality in the web application.
The only decent example I have been able to find so far requires integrating Spring Security into the mix (Spring Security in Google App Engine/), but as the tutorial mentions that it uses Spring MVC, I wonder if this is appropriate or should I look for an MVP approach?
Are there any good books/tutorials/open source projects that can provide a clear example of how to achieve ACL in a GAE +GWT application (specifically Java based solutions)?