Skip to content

Commit

Permalink
HHH-12424 - Fix unintended binary compatibility breaks between 5.1 an…
Browse files Browse the repository at this point in the history
…d 5.3
  • Loading branch information
sebersole committed Apr 11, 2018
1 parent 374c6d6 commit 11d28db
Showing 1 changed file with 21 additions and 0 deletions.
Expand Up @@ -228,6 +228,27 @@ public interface AvailableSettings {
// 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
*/
Expand Down

0 comments on commit 11d28db

Please sign in to comment.