org.hibernate.boot.model.naming.ImplicitJoinTableNameSource.java Source code

Java tutorial

Introduction

Here is the source code for org.hibernate.boot.model.naming.ImplicitJoinTableNameSource.java

Source

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.boot.model.naming;

import org.hibernate.boot.model.source.spi.AttributePath;

/**
 * Context for determining the implicit name for a join table.
 *
 * @author Steve Ebersole
 *
 * @see javax.persistence.JoinTable
 */
public interface ImplicitJoinTableNameSource extends ImplicitNameSource {
    /**
     * Access to the physical name of the owning entity's primary table.
     *
     * @return Owning entity's primary table  name.
     */
    public String getOwningPhysicalTableName();

    /**
     * Access to entity naming information for the owning side.
     *
     * @return Owning entity naming information
     */
    public EntityNaming getOwningEntityNaming();

    /**
     * Access to the physical name of the non-owning entity's primary table.
     *
     * @return Owning entity's primary table  name.
     */
    public String getNonOwningPhysicalTableName();

    /**
     * Access to entity naming information for the owning side.
     *
     * @return Owning entity naming information
     */
    public EntityNaming getNonOwningEntityNaming();

    /**
     * Access to the name of the attribute, from the owning side, that defines the association.
     *
     * @return The owning side's attribute name.
     */
    public AttributePath getAssociationOwningAttributePath();
}