@Target(value=TYPE) @Retention(value=RUNTIME) public @interface SecondaryTable
Modifier and Type | Required Element and Description |
---|---|
String |
name
The name of the table
|
Modifier and Type | Optional Element and Description |
---|---|
String |
catalog
The catalog of the table
|
PrimaryKeyJoinColumn[] |
pkJoinColumns
The columns that are used to join with the primary table.
|
String |
schema
The schema of the table
|
UniqueConstraint[] |
uniqueConstraints
Unique constraints that are to be placed on the table.
|
public abstract String name
public abstract String catalog
public abstract String schema
public abstract PrimaryKeyJoinColumn[] pkJoinColumns
public abstract UniqueConstraint[] uniqueConstraints