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