Package com.vmware.bdd.service.job

Examples of com.vmware.bdd.service.job.StatusUpdater


         }
         ClusterCreate clusterSpec = clusterManager.getClusterSpec(clusterName);
         SyncHostsUtils.SyncHosts(clusterSpec, hostnames, softwareMgr);
      }

      StatusUpdater statusUpdater =
            new DefaultStatusUpdater(jobExecutionStatusHolder,
                  getJobExecutionId(chunkContext));

      ISoftwareManagementTask task = null;
      String appMgrName = softwareMgr.getName();
View Full Code Here


                     JobConstants.TARGET_NAME_JOB_PARAM).split("-")[0];
      }
      String nodeName =
            getJobParameters(chunkContext).getString(
                  JobConstants.SUB_JOB_NODE_NAME);
      StatusUpdater statusUpdator =
            new DefaultStatusUpdater(jobExecutionStatusHolder,
                  getJobExecutionId(chunkContext));
      boolean success =
            clusteringService.startSingleVM(clusterName, nodeName,
                  statusUpdator);
View Full Code Here

            + vmPowerOnStr);
      boolean vmPowerOn = Boolean.parseBoolean(vmPowerOnStr);
      if (!checkVMStatus || (checkVMStatus && !vmPowerOn)) {
         logger.debug("check vm status: " + checkVMStatus
               + ", vm original status is poweron? " + vmPowerOn);
         StatusUpdater statusUpdator =
               new DefaultStatusUpdater(jobExecutionStatusHolder,
                     getJobExecutionId(chunkContext));
         boolean success =
               clusteringService.stopSingleVM(clusterName, nodeName,
                     statusUpdator, vmPoweroff);
View Full Code Here

TOP

Related Classes of com.vmware.bdd.service.job.StatusUpdater

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.