Examples of BpelDAOConnectionImpl


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
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.