| This annotation specifies the primary table for the annotated
entity. Additional tables may be specified using
SecondaryTable or
SecondaryTables annotation.
If no Table annotation is specified for an entity
class, the default values apply.
Example:
@Entity
@Table(name="CUST", schema="RECORDS")
public class Customer { ... }
since: Java Persistence 1.0 |