All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.loader.custom.RootReturn Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * 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.custom;
import org.hibernate.LockMode;
import org.hibernate.loader.EntityAliases;

/**
 * Represents a return which names a "root" entity.
 * 

* A root entity means it is explicitly a "column" in the result, as opposed to * a fetched association. * * @author Steve Ebersole */ public class RootReturn extends NonScalarReturn { private final String entityName; private final EntityAliases entityAliases; public RootReturn( String alias, String entityName, EntityAliases entityAliases, LockMode lockMode) { super( alias, lockMode ); this.entityName = entityName; this.entityAliases = entityAliases; } public String getEntityName() { return entityName; } public EntityAliases getEntityAliases() { return entityAliases; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy