NativeSQLQueryCollectionReturnpublic class NativeSQLQueryCollectionReturn extends NativeSQLQueryNonScalarReturn Represents a return defined as part of a native sql query which
names a collection role in the form {classname}.{collectionrole}; it
is used in defining a custom sql query for loading an entity's
collection in non-fetching scenarios (i.e., loading the collection
itself as the "root" of the result). |
Fields Summary |
---|
private String | ownerEntityName | private String | ownerProperty |
Constructors Summary |
---|
public NativeSQLQueryCollectionReturn(String alias, String ownerEntityName, String ownerProperty, Map propertyResults, org.hibernate.LockMode lockMode)Construct a native-sql return representing a collection initializer
super( alias, propertyResults, lockMode );
this.ownerEntityName = ownerEntityName;
this.ownerProperty = ownerProperty;
|
Methods Summary |
---|
public java.lang.String | getOwnerEntityName()Returns the class owning the collection.
return ownerEntityName;
| public java.lang.String | getOwnerProperty()Returns the name of the property representing the collection from the {@link #getOwnerEntityName}.
return ownerProperty;
|
|