1 package javax.persistence; 2 3 import static java.lang.annotation.ElementType .*; 4 import static java.lang.annotation.RetentionPolicy .*; 5 6 import java.lang.annotation.*; 7 8 @Target({METHOD, FIELD}) 9 @Retention(RUNTIME) 10 public @interface AssociationTable { 11 Table table() default @Table(specified=false); 12 JoinColumn[] joinColumns() default {}; 13 JoinColumn[] inverseJoinColumns() default {}; 14 } | Popular Tags |