/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.jmx.standard;

import org.jboss.system.ServiceMBean;

/**
 * The management interface.
 *
 * @author <a href="mailto:julien@jboss.org">Julien Viet</a>
 * @version $Revision: 1.1.4.1 $
 */
public interface TestInterface extends ServiceMBean
{
   String getString();
   void setString(String s);
   void operation();
}