Package fr.soleil.salsa.dao.impl

Examples of fr.soleil.salsa.dao.impl.ConfigDAO


        dao.deleteConfig(config);
    }

    @Override
    public void deleteDirectory(IDirectory directory) throws PersistenceException {
        ConfigDAO dao = new ConfigDAO();
        dao.deleteDirectory(directory);
    }
View Full Code Here


        dao.deleteDirectory(directory);
    }

    @Override
    public IConfig<?> getConfigById(Integer id) throws ScanNotFoundException {
        ConfigDAO dao = new ConfigDAO();
        return dao.getConfigById(id);
    }
View Full Code Here

        return dao.getConfigById(id);
    }

    @Override
    public List<IDirectory> getConfigDirectories() {
        ConfigDAO dao = new ConfigDAO();
        return dao.getConfigDirectories();
    }
View Full Code Here

        return dao.getConfigDirectories();
    }

    @Override
    public List<IConfig<?>> getConfigList() {
        ConfigDAO dao = new ConfigDAO();
        return dao.getConfigList();
    }
View Full Code Here

        return dao.getConfigList();
    }

    @Override
    public IDirectory getRootDirectory() {
        ConfigDAO dao = new ConfigDAO();
        return dao.getRootDirectory();
    }
View Full Code Here

    }

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

        return dao.saveConfig(config);
    }

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

     * @throws SalsaScanConfigurationException
     */
    @Override
    public IConfig<?> startScan(String path, IContext context) throws SalsaDeviceException,
            ScanNotFoundException, SalsaScanConfigurationException {
        ConfigDAO dao = new ConfigDAO();
        IConfig<?> c = dao.getConfigByPath(path);
        startScan(c, context);
        return c;

    }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.dao.impl.ConfigDAO

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.