Package com.groupon.odo.proxylib.models

Examples of com.groupon.odo.proxylib.models.Script


        return _instance;
    }

    private Script scriptFromSQLResult(ResultSet result) throws Exception {
        Script script = new Script();

        script.setId(result.getInt("id"));
        script.setName(result.getString("name"));
        script.setScript(result.getString("script"));

        return script;
    }
View Full Code Here

TOP

Related Classes of com.groupon.odo.proxylib.models.Script

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.