List of usage examples for org.hibernate.boot.model.naming ImplicitIndexNameSource getColumnNames
public List<Identifier> getColumnNames();
From source file:com.evolveum.midpoint.repo.sql.util.MidPointImplicitNamingStrategy.java
License:Apache License
@Override public Identifier determineIndexName(ImplicitIndexNameSource source) { Identifier i = super.determineIndexName(source); LOGGER.trace("determineIndexName {} {} -> {}", source.getTableName(), source.getColumnNames(), i); return i;/*from w w w . ja va 2 s. co m*/ }