1 package javax.persistence; 2 3 import java.lang.annotation.*; 4 import static java.lang.annotation.ElementType .*; 5 import static java.lang.annotation.RetentionPolicy .*; 6 7 @Target({PACKAGE, TYPE}) 8 @Retention(RUNTIME) 9 public @interface GeneratedIdTable { 10 String name() default ""; 11 Table table() default @Table(specified=false); 12 String pkColumnName() default ""; 13 String valueColumnName() default ""; 14 } | Popular Tags |