use of org.apache.tapestry5.internal.jpa.PersistedEntity in project tapestry-5 by apache.
the class JpaTest method trySomething.
@Test
public void trySomething() {
ThingOne thingOne = new ThingOne();
thingOne.setId(1);
PersistedEntity entity = JpaInternalUtils.convertApplicationValueToPersisted(entityManagerManager, thingOne);
}
Aggregations