Example usage for org.hibernate.boot.model.naming ImplicitCollectionTableNameSource getOwningAttributePath

List of usage examples for org.hibernate.boot.model.naming ImplicitCollectionTableNameSource getOwningAttributePath

Introduction

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

Prototype

public AttributePath getOwningAttributePath();

Source Link

Document

Access to the name of the attribute, from the owning side, that defines the association.

Usage

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

License:Apache License

@Override
public Identifier determineCollectionTableName(ImplicitCollectionTableNameSource source) {
    Identifier i = super.determineCollectionTableName(source);

    LOGGER.trace("determineCollectionTableName {} {} {} -> {}", source.getOwningEntityNaming(),
            source.getOwningPhysicalTableName(), source.getOwningAttributePath(), i);

    return i;/* w  w  w.  jav  a 2  s.com*/
}