Package org.kohsuke.accmod
Annotation Interface Restricted
Indicates that a particular element is really deprecated and that the access to it
is subject to the additional restrictions.
These annotations and restrictions introduced by them are enforced by the "access-modifier-checker" mojo.
- Author:
- Kohsuke Kawaguchi
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass<? extends AccessRestriction>[]
Kind of access that are restricted.
-
Element Details
-
value
Class<? extends AccessRestriction>[] valueKind of access that are restricted. If multiple values are specified, those restrictions are OR-ed — thus if an use violates any of the restrictions, it'll be considered as an error.
-