Package com.sun.enterprise.config.backup

Examples of com.sun.enterprise.config.backup.BackupManager


   
    try
    {
      if(command == CmdType.BACKUP)
      {
        BackupManager mgr = new BackupManager(request);
        CLILogger.getInstance().printMessage(mgr.backup());
      }
      else if(command == CmdType.RESTORE)
      {
        RestoreManager mgr = new RestoreManager(request);
        CLILogger.getInstance().printMessage(mgr.restore());
      }
      else if(command == CmdType.LIST)
      {
        ListManager mgr = new ListManager(request);
        CLILogger.getInstance().printMessage(mgr.list());
      }
      else
      {
        // IMPOSSIBLE!!!
        throw new CommandException("Internal Error");
View Full Code Here

TOP

Related Classes of com.sun.enterprise.config.backup.BackupManager

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.