Package com.peusoft.ptcollect.server.persistance.dao

Examples of com.peusoft.ptcollect.server.persistance.dao.GenericDao.persist()


        if (LOGGER.isDebugEnabled()) {
            LOGGER.debug("creating objects... ");
        }
        for (AbstractDomainObject object : objects) {
            GenericDao dao = daoFactory.getDao(object.getClass());
            dao.persist(object);
            if (LOGGER.isDebugEnabled()) {
                LOGGER.debug("create object " + object);
            }
        }
    }
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.