Package org.camunda.bpm.container.impl.jmx.services

Source Code of org.camunda.bpm.container.impl.jmx.services.JmxManagedProcessEngine

/* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.camunda.bpm.container.impl.jmx.services;

import java.util.Set;

import org.camunda.bpm.container.impl.jmx.MBeanServiceContainer;
import org.camunda.bpm.container.impl.spi.PlatformService;
import org.camunda.bpm.container.impl.spi.PlatformServiceContainer;
import org.camunda.bpm.engine.ManagementService;
import org.camunda.bpm.engine.ProcessEngine;

/**
* <p>Represents a process engine managed by the {@link MBeanServiceContainer}</p>
*
* @author Daniel Meyer
*
*/
public class JmxManagedProcessEngine implements PlatformService<ProcessEngine>, JmxManagedProcessEngineMBean {

  protected ProcessEngine processEngine;

  // for subclasses
  protected JmxManagedProcessEngine() {
  }

  public JmxManagedProcessEngine(ProcessEngine processEngine) {
    this.processEngine = processEngine;
  }

  public void start(PlatformServiceContainer contanier) {
    // this one has no lifecycle support
  }

  public void stop(PlatformServiceContainer container) {
    // this one has no lifecycle support
  }

  public String getName() {
    return processEngine.getName();
  }

  public ProcessEngine getProcessEngine() {
    return processEngine;
  }

  public ProcessEngine getValue() {
    return processEngine;
  }

  public Set<String> getRegisteredDeployments() {
    ManagementService managementService = processEngine.getManagementService();
    return managementService.getRegisteredDeployments();
  }

  public void registerDeployment(String deploymentId) {
    ManagementService managementService = processEngine.getManagementService();
    managementService.registerDeploymentForJobExecutor(deploymentId);
  }

  public void unregisterDeployment(String deploymentId) {
    ManagementService managementService = processEngine.getManagementService();
    managementService.unregisterDeploymentForJobExecutor(deploymentId);
  }

}
TOP

Related Classes of org.camunda.bpm.container.impl.jmx.services.JmxManagedProcessEngine

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.