Search in sources :

Example 1 with ThingTwo

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);
}
Also used : ThingTwo(org.apache.tapestry5.jpa.test.entities.ThingTwo)

Aggregations

ThingTwo (org.apache.tapestry5.jpa.test.entities.ThingTwo)1