Package org.openmeetings.servlet.outputhandler

Examples of org.openmeetings.servlet.outputhandler.BackupExport


          boolean includeFiles = Boolean.parseBoolean(cmdl.getOptionValue("exclude-files", "true"));
          File backup_dir = new File(omUploadTemp, "" + System.currentTimeMillis());
          backup_dir.mkdirs();
         
          shutdownScheduledJobs(ctxName);
          BackupExport export = getApplicationContext(ctxName).getBean(BackupExport.class);
          export.performExport(file, backup_dir, includeFiles, omHome.getAbsolutePath());
          export.deleteDirectory(backup_dir);
          backup_dir.delete();
        } catch (Exception e) {
          handleError("Backup failed", e);
        }
        break;
View Full Code Here

TOP

Related Classes of org.openmeetings.servlet.outputhandler.BackupExport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.