Groups a set (technically an array) of AuthorizeActions for authorization. This annotation works on a class level, and can be used like this:
 // A panel that is only visible for users with role ADMIN
 @AuthorizeAction(action = "RENDER", roles = { "ADMIN", "USER" })
 public class ForAdminsAndUsers extends Panel
 {
        public ForAdminsAndUsers(String id)
        {
                super(id);
        }
 }
 
Author:
Eelco Hillenius
See Also:
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The actions that are allowed.
  • Element Details