Package org.hibernate.models.spi
Interface ModelsContext
- All Known Implementing Classes:
AbstractModelsContext,BasicModelsContextImpl,RestoredModelContext
public interface ModelsContext
Context object for hibernate-models.
Basically support for accessing the ClassDetails registry
and the AnnotationDescriptor registry.
Additionally, defines support for treat-style casting
and serialization.
-
Method Summary
Modifier and TypeMethodDescriptiondefault <S> STreat support.The registry of annotation descriptors.Registry of managed-classes.Access to ClassLoader operations.Serialization support.
-
Method Details
-
getAnnotationDescriptorRegistry
AnnotationDescriptorRegistry getAnnotationDescriptorRegistry()The registry of annotation descriptors. -
getClassDetailsRegistry
ClassDetailsRegistry getClassDetailsRegistry()Registry of managed-classes. -
getClassLoading
ClassLoading getClassLoading()Access to ClassLoader operations. -
as
Treat support. -
toStorableForm
StorableContext toStorableForm()Serialization support.
-