Examples of ConfigDAO


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

*/
public class LocalPersistenceService implements IPersistenceService {

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

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

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

        dao.deleteDirectory(directory);
    }

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

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

        return dao.getConfigById(id);
    }

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

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

    }

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

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

        return dao.saveConfig(config);
    }

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

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

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

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

     * @throws ScanNotFoundException
     */
    @Override
    public void startScan(String path, IContext context) throws SalsaDeviceException,
            ScanNotFoundException, IOException {
        ConfigDAO dao = new ConfigDAO();
        IConfig<?> c = dao.getConfigByPath(path);
        startScan(c, context);
    }
View Full Code Here

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

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

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

     * @throws ScanNotFoundException
     */
    @Override
    public void startScan(String path, IContext context) throws SalsaDeviceException,
            ScanNotFoundException, IOException {
        ConfigDAO dao = new ConfigDAO();
        IConfig c = dao.getConfigByPath(path);
        startScan(c, context);
    }
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.