org.hibernate.loader.EntityAliases Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves
/*
* 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 .
*/
package org.hibernate.loader;
import org.hibernate.persister.entity.Loadable;
/**
* Metadata describing the SQL result set column aliases
* for a particular entity.
*
* @author Gavin King
*/
public interface EntityAliases {
/**
* The result set column aliases for the primary key columns
*/
public String[] getSuffixedKeyAliases();
/**
* The result set column aliases for the discriminator columns
*/
public String getSuffixedDiscriminatorAlias();
/**
* The result set column aliases for the version columns
*/
public String[] getSuffixedVersionAliases();
/**
* The result set column aliases for the property columns
*/
public String[][] getSuffixedPropertyAliases();
/**
* The result set column aliases for the property columns of a subclass
*/
public String[][] getSuffixedPropertyAliases(Loadable persister);
/**
* The result set column alias for the Oracle row id
*/
public String getRowIdAlias();
/**
* Returns the suffix used to generate the aliases.
* @return the suffix used to generate the aliases.
*/
public String getSuffix();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy