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