org.hibernate.engine.query.sql
Class NativeSQLQueryJoinReturn

java.lang.Object
  extended by org.hibernate.engine.query.sql.NativeSQLQueryNonScalarReturn
      extended by org.hibernate.engine.query.sql.NativeSQLQueryJoinReturn
All Implemented Interfaces:
Serializable, NativeSQLQueryReturn

public class NativeSQLQueryJoinReturn
extends NativeSQLQueryNonScalarReturn

Represents a return defined as part of a native sql query which names a fetched role.

Author:
Steve Ebersole
See Also:
Serialized Form

Constructor Summary
NativeSQLQueryJoinReturn(String alias, String ownerAlias, String ownerProperty, Map propertyResults, LockMode lockMode)
          Construct a return descriptor representing some form of fetch.
 
Method Summary
 boolean equals(Object o)
           
 String getOwnerAlias()
          Retrieve the alias of the owner of this fetched association.
 String getOwnerProperty()
          Retrieve the property name (relative to the owner) which maps to the association to be fetched.
 int hashCode()
           
 
Methods inherited from class org.hibernate.engine.query.sql.NativeSQLQueryNonScalarReturn
getAlias, getLockMode, getPropertyResultsMap
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NativeSQLQueryJoinReturn

public NativeSQLQueryJoinReturn(String alias,
                                String ownerAlias,
                                String ownerProperty,
                                Map propertyResults,
                                LockMode lockMode)
Construct a return descriptor representing some form of fetch.

Parameters:
alias - The result alias
ownerAlias - The owner's result alias
ownerProperty - The owner's property representing the thing to be fetched
propertyResults - Any user-supplied column->property mappings
lockMode - The lock mode to apply
Method Detail

getOwnerAlias

public String getOwnerAlias()
Retrieve the alias of the owner of this fetched association.

Returns:
The owner's alias.

getOwnerProperty

public String getOwnerProperty()
Retrieve the property name (relative to the owner) which maps to the association to be fetched.

Returns:
The property name.

equals

public boolean equals(Object o)
Overrides:
equals in class NativeSQLQueryNonScalarReturn

hashCode

public int hashCode()
Overrides:
hashCode in class NativeSQLQueryNonScalarReturn


Copyright © 2001-2010 Red Hat, Inc. All Rights Reserved.