Package net.sf.myjaut.cmd

Examples of net.sf.myjaut.cmd.HttpCommand


    public String getLastSupportedVersion() throws NumberFormatException, ValueNotFoundException, CannotCheckVersionException {
        return getXmlProperties().getValue(LAST_SUPPORTED_VERSION_TAG_NAME);
    }

    private XmlProperties getXmlProperties() throws CannotCheckVersionException {
        HttpCommand hc = new HttpCommand(url);
        try {
            hc.addParameter("version", new VersionProvider().getVersion());
        }
        catch (VersionProvisionException exc) {
            throw new CannotCheckVersionException(exc);
        }
        try {
            hc.execute();
        }
        catch (HttpCommandException exc) {
            throw new CannotCheckVersionException(exc);
        }
        return hc.getXmlProperties();
    }
View Full Code Here

TOP

Related Classes of net.sf.myjaut.cmd.HttpCommand

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.