Package com.cedarsolutions.dao

Examples of com.cedarsolutions.dao.IDaoTransaction


        StringIdEntityDao dao = new StringIdEntityDao();
        dao.setDaoObjectifyService(daoObjectifyService);
        dao.afterPropertiesSet();

        IDaoTransaction daoTransaction = dao.getDaoTransaction();
        assertNotNull(daoTransaction);
        assertTrue(daoTransaction instanceof GaeDaoTransaction);
        GaeDaoTransaction gaeTransaction = (GaeDaoTransaction) daoTransaction;
        assertSame(objectify, gaeTransaction.getObjectify());
    }
View Full Code Here

TOP

Related Classes of com.cedarsolutions.dao.IDaoTransaction

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.