package com.onaro.sanscreen.client.jmxframework.service; /** * Exposes {@link ShutdownService} functionality to be displayed by a JMX Client. This MBean is mainly used * by UT to shutdown the client from another process. * * @author Rick Noel * */ public interface ShutdownServiceMBean { /** * Shuts down the client */ public void shutdown(); }