01: package javax.persistence; 02: 03: import java.lang.annotation.*; 04: import static java.lang.annotation.RetentionPolicy.*; 05: 06: @Target({}) 07: @Retention(RUNTIME) 08: public @interface AttributeOverride { 09: String name(); 10: 11: Column[] column() default {}; 12: }