Example usage for org.hibernate.boot.model.naming ImplicitMapKeyColumnNameSource getPluralAttributePath

List of usage examples for org.hibernate.boot.model.naming ImplicitMapKeyColumnNameSource getPluralAttributePath

Introduction

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

Prototype

public AttributePath getPluralAttributePath();

Source Link

Document

Access the AttributePath for the Map attribute

Usage

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

License:Apache License

@Override
public Identifier determineMapKeyColumnName(ImplicitMapKeyColumnNameSource source) {
    Identifier i = super.determineMapKeyColumnName(source);

    LOGGER.trace("determineMapKeyColumnName {} -> {}", source.getPluralAttributePath(), i);

    return i;//from  w w  w.  j a v a2s.  c  o m
}