*
* @param options the parameter set
* @return the built command
*/
static RemoveWebOp buildRemove(ParameterSet options) {
RemoveWebOp command = new RemoveWebOp();
command.setPath(options.getFirstValue("path", null));
command.setRecursive(Boolean.valueOf(options.getFirstValue("recursive", "false")));
return command;
}