01: package tide.jmx; 02: 03: import javax.management.*; 04: 05: /** Allow controlling tIDE from jConsole. 06: */ 07: public class TideControlMXBean implements TideControlBeanInterface { 08: public void shutdownJVM() { 09: System.exit(0); 10: } 11: }