01: package javax.persistence;
02:
03: import java.lang.annotation.*;
04: import static java.lang.annotation.ElementType.*;
05: import static java.lang.annotation.RetentionPolicy.*;
06:
07: @Target(TYPE)
08: @Retention(RUNTIME)
09: public @interface Table {
10: String name() default "";
11:
12: String catalog() default "";
13:
14: String schema() default "";
15:
16: UniqueConstraint[] uniqueConstraints() default {};
17:
18: boolean specified() default true; // For internal use
19: }
|