org.webpieces.plugins.hibernate.Em Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-plugin Show documentation
Show all versions of hibernate-plugin Show documentation
Someone forgot to fill this in. See http://stackoverflow.com/questions/38272550/how-to-fail-the-gradle-build-if-subproject-is-missing-a-property
package org.webpieces.plugins.hibernate;
import javax.persistence.EntityManager;
public class Em {
private static ThreadLocal emThreadLocal = new ThreadLocal<>();
public static void set(EntityManager em) {
emThreadLocal.set(em);
}
public static EntityManager get() {
return emThreadLocal.get();
}
}