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

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

Introduction

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

Prototype

public AttributePath getIdentifierAttributePath();

Source Link

Document

Access to the AttributePath for the entity's identifier attribute.

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;// w ww  .jav  a  2  s  .c o  m
}