Example usage for org.hibernate.boot.model.naming ImplicitIdentifierColumnNameSource getEntityNaming

List of usage examples for org.hibernate.boot.model.naming ImplicitIdentifierColumnNameSource getEntityNaming

Introduction

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

Prototype

public EntityNaming getEntityNaming();

Source Link

Document

Access the entity name information

Usage

From source file:com.evolveum.midpoint.repo.sql.util.MidPointImplicitNamingStrategy.java

License:Apache License

@Override
public Identifier determineIdentifierColumnName(ImplicitIdentifierColumnNameSource source) {
    Identifier i = super.determineIdentifierColumnName(source);

    LOGGER.trace("determineIdentifierColumnName {} {} -> {}", source.getEntityNaming(),
            source.getIdentifierAttributePath(), i);

    return i;/*from  w  w w .ja  v a  2s  .c om*/
}