Package fr.soleil.salsa.model

Examples of fr.soleil.salsa.model.SalsaModel


public class SalsaApi {
   
    public static SalsaModel createSalsaModel(String aScanServerName){
        try {
            SalsaModel tmpSalsaModel = new SalsaModel(new String[]{aScanServerName});
            return tmpSalsaModel;
        }
        catch (Exception e){
            return null;
        }
View Full Code Here


        }
    }
   
    public static SalsaModel createSalsaModel(Device aDevice){
        try {
            SalsaModel tmpSalsaModel = new SalsaModel(new String[]{aDevice.getName()});
            return tmpSalsaModel;
        }
        catch (Exception e){
            return null;
        }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.model.SalsaModel

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.