Package com.codicesoftware.plastic.commands

Examples of com.codicesoftware.plastic.commands.GetConfigCommand


    public static String getDefaultRepServer() {
        String theValue = "";
        try
        {
            GetConfigCommand cmd = new GetConfigCommand("defaultrepserver");
            cmd.execute();
            theValue = cmd.getParameterValue();
        } catch (Exception e) {
            log.error("The getconfig command returned an error:" + e.getMessage());
            log.debug("The getconfig command returned an error:" + e.getMessage() + " - " + e.getStackTrace());
        }
        return theValue;
View Full Code Here

TOP

Related Classes of com.codicesoftware.plastic.commands.GetConfigCommand

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.