HHH-12424 - Fix unintended binary compatibility breaks between 5.1 and 5.3
This commit is contained in:
parent
374c6d6a36
commit
11d28db2f3
|
@ -228,6 +228,27 @@ public interface AvailableSettings {
|
||||||
// Hibernate specific settings
|
// Hibernate specific settings
|
||||||
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setting that indicates whether to build the JPA types. Accepts
|
||||||
|
* 3 values:<ul>
|
||||||
|
* <li>
|
||||||
|
* <b>enabled</b> - Do the build
|
||||||
|
* </li>
|
||||||
|
* <li>
|
||||||
|
* <b>disabled</b> - Do not so the build
|
||||||
|
* </li>
|
||||||
|
* <li>
|
||||||
|
* <b>ignoreUnsupported</b> - Do the build, but ignore any non-JPA features that would otherwise
|
||||||
|
* result in a failure.
|
||||||
|
* </li>
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* @deprecated use {@link org.hibernate.cfg.AvailableSettings#STATIC_METAMODEL_POPULATION} instead
|
||||||
|
*/
|
||||||
|
@Deprecated
|
||||||
|
String JPA_METAMODEL_POPULATION = "hibernate.ejb.metamodel.population";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated (since 5.2) use {@link org.hibernate.cfg.AvailableSettings#INTERCEPTOR} instead
|
* @deprecated (since 5.2) use {@link org.hibernate.cfg.AvailableSettings#INTERCEPTOR} instead
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue