@Documented
@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD})
public @interface PermitAll
Specifies that all security roles are allowed to invoke the specified
method(s) — i.e., that the specified method(s) are "unchecked".
It can be specified on a class or on methods. Specifying it on the class
means that it applies to all methods of the class. If specified at the
method level, it only affects that method. If the RolesAllowed
annotation is specified at the class level and this annotation is
applied at the method level, the PermitAll
annotation overrides the RolesAllowed
annotation for
the specified method.
- Since:
- Common Annotations 1.0
- See Also:
RolesAllowed
,
DenyAll
- Examples (en):
- testing-security, testing-security-meta, testing-security-4, testing-security-3, testing-security-2, movies-complete, movies-complete-meta, moviefun, connector-war
- Examples (pt):
- testing-security