1 /***************************************2 * *3 * JBoss: The OpenSource J2EE WebOS *4 * *5 * Distributable under LGPL license. *6 * See terms of license at gnu.org. *7 * *8 ***************************************/9 package org.jboss.test.mx.remoting.pingpong;10 11 import javax.management.NotificationBroadcaster ;12 13 14 /**15 * PingPongMBean16 *17 * @author <a HREF="mailto:jhaynie@vocalocity.net">Jeff Haynie</a>18 * @version $Revision: 17857 $19 */20 public interface PingPongMBean extends NotificationBroadcaster 21 {22 public Object ping (Object pong);23 }24