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

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


        command.setQuiet(Boolean.valueOf(options.getFirstValue("quiet", "false")));
        return command;
    }

    static RevertFeatureWebOp buildRevertFeature(ParameterSet options) {
        RevertFeatureWebOp command = new RevertFeatureWebOp();
        command.setAuthorName(options.getFirstValue("authorName", null));
        command.setAuthorEmail(options.getFirstValue("authorEmail", null));
        command.setCommitMessage(options.getFirstValue("commitMessage", null));
        command.setMergeMessage(options.getFirstValue("mergeMessage", null));
        command.setNewCommitId(options.getFirstValue("newCommitId", null));
        command.setOldCommitId(options.getFirstValue("oldCommitId", null));
        command.setPath(options.getFirstValue("path", null));
        return command;
    }
View Full Code Here

TOP

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

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.