1 22 package org.objectweb.petals.tools.ant.util; 23 24 import javax.jbi.JBIException; 25 26 31 public class LifeCycleMoc implements LifeCycleMocMBean { 32 33 36 private String state = "Shutdown"; 37 38 public String getCurrentState() { 39 return state; 40 } 41 42 public void shutDown() throws JBIException { 43 state = "Shutdown"; 44 } 45 46 public void start() throws JBIException { 47 state = "Started"; 48 } 49 50 public void stop() throws JBIException { 51 state = "Stopped"; 52 } 53 54 } 55 | Popular Tags |