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

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

Introduction

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

Prototype

public EntityNaming getOwningEntityNaming();

Source Link

Document

Access to entity naming information for the owning side.

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;//from   w ww  .  j av  a  2 s. co m
}