1 package com.atlassian.util.concurrent;
2
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Retention;
6 import java.lang.annotation.RetentionPolicy;
7 import java.lang.annotation.Target;
8
9 @Documented
10 @Retention(value = RetentionPolicy.CLASS)
11 @Target(value = { ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER, ElementType.LOCAL_VARIABLE })
12 public @interface NotNull
13 {}