001package co.codewizards.cloudstore.core.ls;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Inherited;
005import java.lang.annotation.Retention;
006import java.lang.annotation.RetentionPolicy;
007import java.lang.annotation.Target;
008
009@Target({ ElementType.TYPE, ElementType.FIELD })
010@Retention(RetentionPolicy.RUNTIME)
011@Inherited
012public @interface NoObjectRef {
013
014        boolean value() default true;
015
016        boolean inheritToObjectGraphChildren() default true;
017}