use of com.sun.enterprise.backup.ListManager in project Payara by payara.
the class ListBackupsCommand method executeCommand.
@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);
}
return 0;
}
Aggregations