Dan
Dan

Reputation: 3877

Roles in Java Google App Engine

Does anyone have any recommendations for me on how to manage user roles on the Java version of Google App Engine?

Upvotes: 5

Views: 1145

Answers (1)

Boris Daich
Boris Daich

Reputation: 2461

As documentation states here

App Engine does not support custom security roles () or alternate authentication mechanisms () in the deployment descriptor. Security constraints apply to static files as well as servlets.

So you do not left with much other then coding work with ACLs in to your app all by hand and this is highly application design dependent.

Upvotes: 3

Related Questions