package com.ttv.acs.testJMX;

public interface MyJMXInterface {
	
	public void myTestMethod();
	
	/**
	 * Start the MBean
	 * @throws Exception
	 */
	public void start() throws Exception;
	
	/**
	 * Stop the MBean
	 * @throws Exception
	 */
	public void stop() throws Exception;
	
	/**
	 * Create the MBean
	 * @throws Exception
	 */
	public void create() throws Exception;
	
	/**
	 * Destroy the MBean
	 * @throws Exception
	 */
	public void destroy() throws Exception;

}
