Reputation: 66156
I have a very basic question caused by either lack of experience or lack of documentation (or both).
I'm developing application for GAE/J. I want only certain users can log in and only with their gmail accounts (i.e. admin should have a possibility to list gmail accounts and only those users can work with the application).
So, I have doubts in:
1) Should I implement functionality for admin appointment or google has already done it for me and I'll be able to configure it after deployment?
2) Almost the same doubts about users: should I provide functionality (web interface) for adding/removing users or google has already done it for me too and it's configurable somewhere in configuration console after deployment?
Thanks!
upd: I know about UserService
class and its method isUserAdmin()
but I can't figure out what should happen for user become an admin?
Upvotes: 1
Views: 409
Reputation: 565
A few points which will hopefully answer your question(S):
In short, if you want users to have specify access to certain routes, you'll have to develop that yourself.
For more information see: http://code.google.com/appengine/docs/java/config/webxml.html#Security_and_Authentication
Upvotes: 2