Package org.example.app3.services

Examples of org.example.app3.services.AppModule


    private Thing thing;

    @CommitAfter
    void onCreateEntity()
    {
        final Thing thing = new Thing();
        thing.setName("name");

        entityManager.persist(thing);

        this.thing = thing;
    }
View Full Code Here

TOP

Related Classes of org.example.app3.services.AppModule

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.