001package javax.annotation;
002
003import java.lang.annotation.Documented;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006
007/**
008 * Class retained Nonnull annotation.
009 *
010 * Purely used to assist IDE auto-completion for users of Ebean API.
011 * This is expected to be in maven provided scope only.
012 */
013@Documented
014@Retention(RetentionPolicy.CLASS)
015public @interface Nonnull {
016}