use of org.apache.tapestry5.jpa.test.entities.ThingTwo in project tapestry-5 by apache.
the class NestedServiceImpl method createThingTwo.
public void createThingTwo(String nameTwo) {
ThingTwo thingTwo = new ThingTwo();
thingTwo.setName(nameTwo);
em.persist(thingTwo);
}
Aggregations