1 23 package javax.persistence; 24 25 import java.lang.annotation.Target ; 26 import java.lang.annotation.Retention ; 27 import static java.lang.annotation.ElementType.TYPE ; 28 import static java.lang.annotation.ElementType.METHOD ; 29 import static java.lang.annotation.ElementType.FIELD ; 30 import static java.lang.annotation.RetentionPolicy.RUNTIME ; 31 32 66 @Target ({TYPE, METHOD, FIELD}) 67 @Retention (RUNTIME) 68 69 public @interface AssociationOverride { 70 71 76 String name(); 77 78 83 JoinColumn[] joinColumns(); 84 } 85 | Popular Tags |