*
* @param options the parameter set
* @return the built command
*/
static Status buildStatus(ParameterSet options) {
Status command = new Status();
command.setLimit(parseInt(options, "limit", 50));
command.setOffset(parseInt(options, "offset", 0));
return command;
}