Package fr.soleil.salsa.data.util

Examples of fr.soleil.salsa.data.util.ConfigSerializer


    public void notifyLoadAndStartScanAction() {
        if (config != null) {
            notifyLoadScanAction(config);
            notifyStartScanAction(config);
            ConfigSerializer configSerializer = new ConfigSerializer();
            IConfig<?> restoreCopiedConfigModel = configSerializer.cloneConfig(config);
            this.setLastStartScan(restoreCopiedConfigModel);
        } else {
            errorMessage("You need to select a config before you can start a scan.");
        }
    }
View Full Code Here


    public void notifyLoadAndStartScanAction() {
        if (config != null) {
            notifyLoadScanAction(config);
            notifyStartScanAction(config);
            ConfigSerializer configSerializer = new ConfigSerializer();
            IConfig<?> restoreCopiedConfigModel = configSerializer.cloneConfig(config);
            this.setLastStartScan(restoreCopiedConfigModel);
        }
        else {
            errorMessage("You need to select a config before you can start a scan.");
        }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.data.util.ConfigSerializer

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.