Package javax.persistence
Annotation Type SecondaryTable
-
@Target(TYPE) @Retention(RUNTIME) @Repeatable(SecondaryTables.class) public @interface SecondaryTable
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description StringcatalogForeignKeyforeignKeyIndex[]indexesPrimaryKeyJoinColumn[]pkJoinColumnsStringschemaUniqueConstraint[]uniqueConstraints
-
-
-
Element Detail
-
name
String name
-
-
-
catalog
String catalog
- Default:
- ""
-
-
-
schema
String schema
- Default:
- ""
-
-
-
pkJoinColumns
PrimaryKeyJoinColumn[] pkJoinColumns
- Default:
- {}
-
-
-
uniqueConstraints
UniqueConstraint[] uniqueConstraints
- Default:
- {}
-
-
-
indexes
Index[] indexes
- Default:
- {}
-
-
-
foreignKey
ForeignKey foreignKey
- Default:
- @javax.persistence.ForeignKey(javax.persistence.ConstraintMode.PROVIDER_DEFAULT)
-
-