@Target(value=TYPE)
@Retention(value=RUNTIME)
public @interface Table
If no Table annotation is specified for an entity
class, the default values apply.
Example:
@Entity
@Table(name="CUST", schema="RECORDS")
public class Customer { ... }