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;
}