Package org.hibernate.envers.test.entities.ids

Examples of org.hibernate.envers.test.entities.ids.ManyToOneIdNotAuditedTestEntity


        // Revision 2
        em = getEntityManager();
        em.getTransaction().begin();

        ManyToOneIdNotAuditedTestEntity mtoinate = new ManyToOneIdNotAuditedTestEntity();
        mtoinate.setData("data1");
        mtoinate.setId(id1);
        em.persist(mtoinate);

        em.getTransaction().commit();
    }
View Full Code Here

TOP

Related Classes of org.hibernate.envers.test.entities.ids.ManyToOneIdNotAuditedTestEntity

Copyright © 2018 www.massapicom. 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.