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

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

Introduction

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

Prototype

public Identifier getOwningPhysicalTableName();

Source Link

Document

Access to the physical name of the owning entity's table.

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  ww  . j  av  a2  s  . c  o  m
}