1 3 package jodd.madvoc.meta; 4 5 import jodd.madvoc.interceptor.ScopeType; 6 7 import java.lang.annotation.*; 8 9 12 @Documented 13 @Retention(value = RetentionPolicy.RUNTIME) 14 @Target(ElementType.FIELD) 15 public @interface In { 16 17 20 public boolean create() default true; 21 22 25 public ScopeType scope() default ScopeType.PARAM; 26 27 30 public String value() default ""; 31 32 } | Popular Tags |