1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 8 // $Id: AdaptorMBean.java,v 1.5 2004/03/26 03:56:47 starksm Exp $9 10 package org.jboss.net.jmx.adaptor.server;11 12 import javax.management.MBeanServer ;13 14 import org.jboss.system.ServiceMBean;15 16 /**17 * just for compliance purposes, we have to18 * provide an empty mbean interface19 * @author <a HREF="mailto:Christoph.Jung@infor.de">Christoph G. Jung</a>20 * @created October 2, 200121 * @version $Revision: 1.5 $22 */23 24 public interface AdaptorMBean extends ServiceMBean, MBeanServer 25 {26 27 }