List of usage examples for org.hibernate.boot.model.naming ImplicitForeignKeyNameSource getTableName
public Identifier getTableName();
From source file:org.ligoj.bootstrap.core.dao.ImplicitNamingStrategyNiceJpaImpl.java
License:MIT License
@Override public Identifier determineForeignKeyName(final ImplicitForeignKeyNameSource source) { return toIdentifier(Constraint.generateName("FK_", new Table(source.getTableName().getText()), toColumns(source.getColumnNames())), source.getBuildingContext()); }