Package org.hibernate.boot.spi
Interface MetadataBuilderContributor
-
@Deprecated(forRemoval=true) public interface MetadataBuilderContributor
Deprecated, for removal: This API element is subject to removal in a future version.Use settings,TypeContributor
,FunctionContributor
orAdditionalMappingContributor
instead depending on needA bootstrap process hook for contributing settings toMetadataBuilder
. Generally this is used from JPA bootstrapping whereMetadataBuilder
is not accessible. Implementations can be discovered. For historical reasons, an implementation can also be named using the "hibernate.metadata_builder_contributor" setting, though discovery should be preferred.- Since:
- 5.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
contribute(MetadataBuilder metadataBuilder)
Deprecated, for removal: This API element is subject to removal in a future version.Perform the process of contributing to theMetadataBuilder
.
-
-
-
Method Detail
-
contribute
void contribute(MetadataBuilder metadataBuilder)
Deprecated, for removal: This API element is subject to removal in a future version.Perform the process of contributing to theMetadataBuilder
.- Parameters:
metadataBuilder
- TheMetadataBuilder
, to which to contribute.
-
-