}
private void restoreOm(String ctxName, File backup) {
InputStream is = null;
try {
BackupImport importCtrl = getApplicationContext(ctxName).getBean(BackupImport.class);
is = new FileInputStream(backup);
importCtrl.performImport(is);
} catch (Exception e) {
handleError("Restore failed", e);
} finally {
if (is != null) {
try {