Package org.apache.ode.dao.jpa.bpel

Examples of org.apache.ode.dao.jpa.bpel.BpelDAOConnectionImpl


*/
public class DefaultEMLocator implements EntityManagerLocator {
    public EntityManager locate() {

        final ThreadLocal<BpelDAOConnectionImpl> currentConnection = BpelDAOConnectionImpl.getThreadLocal();
        BpelDAOConnectionImpl bpelDAOConnection = currentConnection.get();
        if(null==bpelDAOConnection)
            throw new IllegalStateException("Unabled to locate BpelDAOConnectionImpl from ThreadLocal");

        return bpelDAOConnection.getEntityManager();
       
    }
View Full Code Here

TOP

Related Classes of org.apache.ode.dao.jpa.bpel.BpelDAOConnectionImpl

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.