Klasse ForeignKeyMetadata

java.lang.Object
org.apache.torque.generator.source.jdbc.ForeignKeyMetadata

public class ForeignKeyMetadata extends Object
The data about a foreign key as read from JDBC Metadata.
Version:
$Id: ForeignKeyMetadata.java 1917241 2024-04-21 13:29:41Z tv $
  • Konstruktordetails

    • ForeignKeyMetadata

      public ForeignKeyMetadata()
  • Methodendetails

    • getReferencedTable

      public String getReferencedTable()
      Returns the name of the referenced (foreign) table.
      Gibt zurück:
      the name of the referenced (foreign) table.
    • setReferencedTable

      public void setReferencedTable(String referencedTable)
      Sets the name of the referenced (foreign) table.
      Parameter:
      referencedTable - the name of the referenced (foreign) table.
    • getForeignKeyName

      public String getForeignKeyName()
      Returns the name of the foreign key.
      Gibt zurück:
      the name of the foreign key.
    • setForeignKeyName

      public void setForeignKeyName(String foreignKeyName)
      Sets the name of the foreign key.
      Parameter:
      foreignKeyName - the name of the foreign key.
    • getLocalColumns

      public List<String> getLocalColumns()
      Returns the names of the local columns. To change the list in this object, the returned list can be modified.
      Gibt zurück:
      the names of the local columns.
    • getForeignColumns

      public List<String> getForeignColumns()
      Returns the names of the foreign columns. To change the list in this object, the returned list can be modified.
      Gibt zurück:
      the names of the foreign columns.