minor
This commit is contained in:
parent
28c0b05d0f
commit
8c671d98d0
|
@ -18,8 +18,11 @@ import org.hibernate.type.Type;
|
||||||
*
|
*
|
||||||
* @see org.hibernate.SessionFactory#getClassMetadata(Class)
|
* @see org.hibernate.SessionFactory#getClassMetadata(Class)
|
||||||
* @author Gavin King
|
* @author Gavin King
|
||||||
|
*
|
||||||
|
* @deprecated (since 6.0) Use Hibernate's mapping model {@link org.hibernate.metamodel.MappingMetamodel}
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings( {"JavaDoc"})
|
@SuppressWarnings( {"JavaDoc"})
|
||||||
|
@Deprecated
|
||||||
public interface ClassMetadata {
|
public interface ClassMetadata {
|
||||||
|
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -11,7 +11,10 @@ import org.hibernate.type.Type;
|
||||||
* Exposes collection metadata to the application
|
* Exposes collection metadata to the application
|
||||||
*
|
*
|
||||||
* @author Gavin King
|
* @author Gavin King
|
||||||
|
*
|
||||||
|
* @deprecated (since 6.0) Use Hibernate's mapping model {@link org.hibernate.metamodel.MappingMetamodel}
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public interface CollectionMetadata {
|
public interface CollectionMetadata {
|
||||||
/**
|
/**
|
||||||
* The collection key type
|
* The collection key type
|
||||||
|
|
|
@ -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;
|
|
@ -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>
|
|
Loading…
Reference in New Issue