use of com.sun.enterprise.backup.BackupManager in project Payara by payara.
the class BackupDomainCommand method executeCommand.
/**
*/
@Override
protected int executeCommand() throws CommandException {
try {
BackupManager mgr = new BackupManager(request);
logger.info(mgr.backup());
} catch (BackupWarningException bwe) {
logger.info(bwe.getMessage());
} catch (BackupException be) {
throw new CommandException(be);
}
return 0;
}
Aggregations