Annotation Interface AuthorizeInstantiations


Groups a set (technically an array) of AuthorizeInstantiations for page authorization. This offers the ability to instantiate a page based on combined permissions / roles required. It represents an AND relationship between the included permissions / roles. This can be used like this:
 @AuthorizeInstantiations(ruleset = { @AuthorizeInstantiation("ADMIN"),
                @AuthorizeInstantiation("MANAGER") })
 public class ForAdministrativeManagers extends WebPage
 {
        public ForAdministrativeManagers()
        {
                super();
        }
 }
 
Author:
René Dieckmann (rene.dieckmann@menoto.de)
See Also:
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The combined ruleset.