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

org.hibernate.sql.results.spi.FetchParentAccess Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha3
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 http://www.gnu.org/licenses/lgpl-2.1.html
 */
package org.hibernate.sql.results.spi;

import java.util.function.Consumer;

import org.hibernate.query.NavigablePath;

/**
 * Serves as a link to a fetch's parent providing access to the parent
 * instance in relation to the current "row" being processed.
 *
 * @author Steve Ebersole
 */
public interface FetchParentAccess {
	FetchParentAccess findFirstEntityDescriptorAccess();

	Object getParentKey();

	/**
	 * Access to the fetch's parent instance.
	 */
	Object getFetchParentInstance();

	NavigablePath getNavigablePath();

	void registerResolutionListener(Consumer resolvedParentConsumer);
}