1 package com.atlassian.sal.api.websudo;
2
3 import java.lang.annotation.*;
4
5 /**
6 * Any Element marked with this annotation will bypass the WebSudo protection.
7 *
8 * @since 2.2
9 */
10 @Retention(RetentionPolicy.RUNTIME)
11 @Target({ElementType.PACKAGE, ElementType.METHOD, ElementType.TYPE})
12 @Inherited
13 public @interface WebSudoNotRequired
14 {
15 }