Package fr.soleil.salsa.dao.impl

Examples of fr.soleil.salsa.dao.impl.ConfigDAO.saveConfig()


     * @see fr.soleil.salsa.service.IPersistenceService#saveConfig(fr.soleil.salsa.entity.IConfig)
     */
    @Override
    public IConfig<?> saveConfig(IConfig<?> config) throws PersistenceException {
        ConfigDAO dao = new ConfigDAO();
        return dao.saveConfig(config);
    }

    /* (non-Javadoc)
     * @see fr.soleil.salsa.service.IPersistenceService#saveDirectory(fr.soleil.salsa.entity.IDirectory)
     */
 
View Full Code Here


    @Override
    public IConfig<?> saveConfig(IConfig<?> config) throws PersistenceException,
            ScanNotFoundException {
        ConfigDAO dao = new ConfigDAO();
        return dao.saveConfig(config);
    }

    @Override
    public IDirectory saveDirectory(IDirectory directory) throws PersistenceException {
        ConfigDAO dao = new ConfigDAO();
View Full Code Here

     * @see fr.soleil.salsa.service.IPersistenceService#saveConfig(fr.soleil.salsa.entity.IConfig)
     */
    @Override
    public IConfig saveConfig(IConfig config) throws PersistenceException {
        ConfigDAO dao = new ConfigDAO();
        return dao.saveConfig(config);
    }

    /* (non-Javadoc)
     * @see fr.soleil.salsa.service.IPersistenceService#saveDirectory(fr.soleil.salsa.entity.IDirectory)
     */
 
View Full Code Here

    @Override
    public IConfig<?> saveConfig(IConfig<?> config) throws PersistenceException,
            ScanNotFoundException {
        ConfigDAO dao = new ConfigDAO();
        return dao.saveConfig(config);
    }

    @Override
    public IDirectory saveDirectory(IDirectory directory) throws PersistenceException {
        ConfigDAO dao = new ConfigDAO();
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.