Package org.camunda.bpm.container.impl.jmx.kernel.util

Source Code of org.camunda.bpm.container.impl.jmx.kernel.util.StopServiceDeploymentOperationStep

package org.camunda.bpm.container.impl.jmx.kernel.util;

import org.camunda.bpm.container.impl.spi.PlatformServiceContainer;
import org.camunda.bpm.container.impl.spi.DeploymentOperation;
import org.camunda.bpm.container.impl.spi.DeploymentOperationStep;

public class StopServiceDeploymentOperationStep extends DeploymentOperationStep {

  private String serviceName;

  public StopServiceDeploymentOperationStep(String serviceName) {
    this.serviceName = serviceName;
  }

  public String getName() {
    return "stop "+serviceName;
  }

  public void performOperationStep(DeploymentOperation operationContext) {
    final PlatformServiceContainer serviceContainer = operationContext.getServiceContainer();

    serviceContainer.stopService(serviceName);
  }

}
TOP

Related Classes of org.camunda.bpm.container.impl.jmx.kernel.util.StopServiceDeploymentOperationStep

TOP
Copyright © 2018 www.massapi.com. 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.