Package org.jboss.capedwarf.server.api.lifecycle

Examples of org.jboss.capedwarf.server.api.lifecycle.BeforeImpl


    private Event<Notification<EntityManagerFactory>> produceEvent;

    @Produces
    @ApplicationScoped
    public EntityManagerFactory produceFactory(EMFInfo info) {
        produceEvent.select(new BeforeImpl()).fire(new EMFNotification(null)); // let app know we're about to create EMF
        EntityManagerFactory entityManagerFactory = getFactory(info);
        produceEvent.select(new AfterImpl()).fire(new EMFNotification(entityManagerFactory)); // let app know we created EMF
        return entityManagerFactory;
    }
View Full Code Here

TOP

Related Classes of org.jboss.capedwarf.server.api.lifecycle.BeforeImpl

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.