@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface PermitAll
Security annotation which allows a method to be called by all users
regardless of their status. This includes the "guest" role or even
a disabled user account (i.e. not in "user"). Use sparingly.
This annotation replaces the previously used version with the same
semantics from the JavaEE spec.