@Override
protected int executeCommand()
throws CommandException {
try {
ListManager mgr = new ListManager(request);
logger.info(mgr.list());
} catch (BackupWarningException bwe) {
logger.info(bwe.getMessage());
} catch (BackupException be) {
throw new CommandException(be);
}