return backup;
}
private void restoreOm(String ctxName, File backup) {
try {
BackupImportController importCtrl = getApplicationContext(ctxName).getBean(BackupImportController.class);
importCtrl.performImport(new FileInputStream(backup), omHome.getAbsolutePath());
} catch (Exception e) {
handleError("Restore failed", e);
}
}