Example usage for org.hibernate.boot.model.naming ImplicitIndexNameSource getTableName

List of usage examples for org.hibernate.boot.model.naming ImplicitIndexNameSource getTableName

Introduction

In this page you can find the example usage for org.hibernate.boot.model.naming ImplicitIndexNameSource getTableName.

Prototype

public Identifier getTableName();

Source Link

Usage

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   ww w  .  j  ava  2s.c o  m*/
}