Package org.locationtech.geogig.web.api.commands

Examples of org.locationtech.geogig.web.api.commands.FetchWebOp


     *
     * @param options the parameter set
     * @return the built command
     */
    static FetchWebOp buildFetch(ParameterSet options) {
        FetchWebOp command = new FetchWebOp();
        command.setFetchAll(Boolean.valueOf(options.getFirstValue("all", "false")));
        command.setPrune(Boolean.valueOf(options.getFirstValue("prune", "false")));
        command.setRemote(options.getFirstValue("remote"));
        return command;
    }
View Full Code Here

TOP

Related Classes of org.locationtech.geogig.web.api.commands.FetchWebOp

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.