This commit is contained in:
Steve Ebersole 2019-12-11 19:43:37 -06:00
parent 28c0b05d0f
commit 8c671d98d0
4 changed files with 20 additions and 16 deletions

View File

@ -18,8 +18,11 @@ import org.hibernate.type.Type;
*
* @see org.hibernate.SessionFactory#getClassMetadata(Class)
* @author Gavin King
*
* @deprecated (since 6.0) Use Hibernate's mapping model {@link org.hibernate.metamodel.MappingMetamodel}
*/
@SuppressWarnings( {"JavaDoc"})
@Deprecated
public interface ClassMetadata {
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

View File

@ -11,7 +11,10 @@ import org.hibernate.type.Type;
* Exposes collection metadata to the application
*
* @author Gavin King
*
* @deprecated (since 6.0) Use Hibernate's mapping model {@link org.hibernate.metamodel.MappingMetamodel}
*/
@Deprecated
public interface CollectionMetadata {
/**
* The collection key type

View File

@ -0,0 +1,14 @@
/*
* 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
*/
/**
* This package defines an API for accessing the Hibernate runtime metamodel.
*
* @deprecated (since 6.0) Use Hibernate's mapping model {@link org.hibernate.metamodel.MappingMetamodel}
*/
@Deprecated
package org.hibernate.metadata;

View File

@ -1,16 +0,0 @@
<!--
~ 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>.
-->
<html>
<head></head>
<body>
<p>
This package defines an API for accessing the Hibernate
runtime metamodel.
</p>
</body>
</html>