| Modifier and Type | Optional Element and Description |
|---|---|
String |
catalog
The catalog of the join table.
|
JoinColumn[] |
inverseJoinColumns
The foreign key columns of the join table which reference the primary table of the entity that does not
own the association (i.e.
|
String |
name
Name of the join table.
|
String |
schema
The schema of the join table.
|
public abstract String name
Name of the join table. Defaults to a concatenation of the names of the primary table of the entity owning the association and of the primary table of the entity referenced by the association.
public abstract String schema
The schema of the join table. Defaults to the schema of the entity owning the association.
public abstract String catalog
The catalog of the join table. Defaults to the catalog of the entity owning the association.
public abstract JoinColumn[] inverseJoinColumns
The foreign key columns of the join table which reference the primary table of the entity that does not own the association (i.e. the inverse side of the association).
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.