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

org.hibernate.query.criteria.JpaPathSource Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
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.query.criteria;

import javax.persistence.metamodel.ManagedType;

/**
 * @author Steve Ebersole
 *
 * @deprecated This makes the SQM tree awkward and is not needed for
 * JPA - JPA has no notion of a "path source" as a tree contract.
 */
@Deprecated
public interface JpaPathSource extends JpaPath {
	ManagedType getManagedType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy