| java.lang.Object velosurf.model.Attribute velosurf.model.ExportedKey
ExportedKey | public class ExportedKey extends Attribute (Code) | | An exported key (aka primary key used in a foreign key) attribute.
|
ExportedKey | public ExportedKey(String name, Entity entity, String fkEntity, List<String> fkCols)(Code) | | Exported key constructor.
Parameters: name - name of this exported key Parameters: entity - parent entity Parameters: fkEntity - foreign key entity Parameters: fkCols - foreign key columns |
getFKCols | public List<String> getFKCols()(Code) | | Foreign key columns getter.
foreign key columns list |
getQuery | protected String getQuery()(Code) | | Query getter.
the SQL query |
setFKCols | public void setFKCols(List<String> fkCols)(Code) | | Foreign key columns setter.
Parameters: fkCols - foreign key columns list |
toString | public String toString()(Code) | | Debug method.
the definition string of this attribute |
|
|