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

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


     *
     * @param options the parameter set
     * @return the built command
     */
    static Commit buildCommit(ParameterSet options) {
        Commit commit = new Commit();
        commit.setAll(Boolean.valueOf(options.getFirstValue("all", "false")));
        commit.setMessage(options.getFirstValue("message", null));
        commit.setAuthorName(options.getFirstValue("authorName", null));
        commit.setAuthorEmail(options.getFirstValue("authorEmail", null));
        return commit;
    }
View Full Code Here

TOP

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

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.