类 ManagedResourcesImpl
- java.lang.Object
-
- org.hibernate.boot.model.process.internal.ManagedResourcesImpl
-
- 所有已实现的接口:
ManagedResources
public class ManagedResourcesImpl extends Object implements ManagedResources
- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 static ManagedResourcesImplbaseline(MetadataSources sources, BootstrapContext bootstrapContext)Collection<String>getAnnotatedClassNames()Informational access to any entity and component classes in the user domain model known by name.Collection<Class>getAnnotatedClassReferences()Informational access to any entity and component classes in the user domain model known by Class reference .Collection<String>getAnnotatedPackageNames()Informational access to any known annotated package names (packages with apackage-info.classfile that Hibernate has been told about).Collection<AttributeConverterInfo>getAttributeConverterDefinitions()Informational access to the AttributeConverter definitions known about.Collection<Binding>getXmlMappingBindings()Informational access to binding for all known XML mapping files.
-
-
-
方法详细资料
-
baseline
public static ManagedResourcesImpl baseline(MetadataSources sources, BootstrapContext bootstrapContext)
-
getAttributeConverterDefinitions
public Collection<AttributeConverterInfo> getAttributeConverterDefinitions()
从接口复制的说明:ManagedResourcesInformational access to the AttributeConverter definitions known about. Changes to made to the returned list have no effect.- 指定者:
getAttributeConverterDefinitions在接口中ManagedResources- 返回:
- The AttributeConverter definitions.
-
getAnnotatedClassReferences
public Collection<Class> getAnnotatedClassReferences()
从接口复制的说明:ManagedResourcesInformational access to any entity and component classes in the user domain model known by Class reference . Changes to made to the returned list have no effect.- 指定者:
getAnnotatedClassReferences在接口中ManagedResources- 返回:
- The list of entity/component classes known by Class reference.
-
getAnnotatedClassNames
public Collection<String> getAnnotatedClassNames()
从接口复制的说明:ManagedResourcesInformational access to any entity and component classes in the user domain model known by name. Changes to made to the returned list have no effect.- 指定者:
getAnnotatedClassNames在接口中ManagedResources- 返回:
- The list of entity/component classes known by name.
-
getAnnotatedPackageNames
public Collection<String> getAnnotatedPackageNames()
从接口复制的说明:ManagedResourcesInformational access to any known annotated package names (packages with apackage-info.classfile that Hibernate has been told about). Changes to made to the returned list have no effect.- 指定者:
getAnnotatedPackageNames在接口中ManagedResources- 返回:
- The list of known annotated package names.
-
getXmlMappingBindings
public Collection<Binding> getXmlMappingBindings()
从接口复制的说明:ManagedResourcesInformational access to binding for all known XML mapping files. Changes to made to the returned list have no effect.- 指定者:
getXmlMappingBindings在接口中ManagedResources- 返回:
- The list of bindings for all known XML mapping files.
-
-