org.hibernate.loader
Interface EntityAliases

All Known Implementing Classes:
ColumnEntityAliases, DefaultEntityAliases

public interface EntityAliases

Metadata describing the SQL result set column aliases for a particular entity.

Author:
Gavin King

Method Summary
 java.lang.String getRowIdAlias()
          The result set column alias for the Oracle row id
 java.lang.String getSuffixedDiscriminatorAlias()
          The result set column aliases for the discriminator columns
 java.lang.String[] getSuffixedKeyAliases()
          The result set column aliases for the primary key columns
 java.lang.String[][] getSuffixedPropertyAliases()
          The result set column aliases for the property columns
 java.lang.String[][] getSuffixedPropertyAliases(Loadable persister)
          The result set column aliases for the property columns of a subclass
 java.lang.String[] getSuffixedVersionAliases()
          The result set column aliases for the version columns
 

Method Detail

getSuffixedKeyAliases

java.lang.String[] getSuffixedKeyAliases()
The result set column aliases for the primary key columns


getSuffixedDiscriminatorAlias

java.lang.String getSuffixedDiscriminatorAlias()
The result set column aliases for the discriminator columns


getSuffixedVersionAliases

java.lang.String[] getSuffixedVersionAliases()
The result set column aliases for the version columns


getSuffixedPropertyAliases

java.lang.String[][] getSuffixedPropertyAliases()
The result set column aliases for the property columns


getSuffixedPropertyAliases

java.lang.String[][] getSuffixedPropertyAliases(Loadable persister)
The result set column aliases for the property columns of a subclass


getRowIdAlias

java.lang.String getRowIdAlias()
The result set column alias for the Oracle row id



Copyright © 2008 Hibernate.org. All Rights Reserved.