Skip to content

Commit cad185f

Browse files
committed
HHH-18462 fix up javadoc for MappingContext
1 parent da8a13b commit cad185f

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

hibernate-core/src/main/java/org/hibernate/type/MappingContext.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
import org.hibernate.MappingException;
88

99
/**
10-
* Declares operations used by implementors of {@link Type} that are common to
11-
* "compiled" mappings held at runtime by a {@link org.hibernate.SessionFactory}
12-
* and "uncompiled" mappings held by a {@link org.hibernate.cfg.Configuration}.
10+
* Declares operations used by implementors of {@link Type} that are common to the fully-"compiled"
11+
* runtime mapping metadata held by a {@link org.hibernate.SessionFactory} and the incomplete metamodel
12+
* which exists during the {@linkplain org.hibernate.boot.model.process.spi.MetadataBuildingProcess
13+
* metadata building process}.
1314
*
1415
* @see Type
15-
* @see org.hibernate.internal.SessionFactoryImpl
16-
* @see org.hibernate.cfg.Configuration
17-
*
16+
* @see org.hibernate.metamodel.spi.RuntimeMetamodelsImplementor
17+
* @see org.hibernate.boot.Metadata
1818
*
19+
* @since 7.0
1920
*/
2021
public interface MappingContext {
2122
Type getIdentifierType(String className) throws MappingException;

0 commit comments

Comments
 (0)