Examples of SerializableEmbeddable1


Examples of org.apache.cayenne.jpa.itest.ch2.entity.SerializableEmbeddable1

     */
    public void testSerializableEmbeddable() throws Exception {
        getDbHelper().deleteAll("SerializableEmbeddedEntity");

        SerializableEmbeddedEntity o1 = new SerializableEmbeddedEntity();
        SerializableEmbeddable1 o2 = new SerializableEmbeddable1();
        o2.setProperty1("p1");
        o1.setEmbeddable(o2);

        getEntityManager().persist(o1);
        getEntityManager().getTransaction().commit();

View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.