MyServiceMBean.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jmx.invokerproxy; import org.jboss.invocation.Invocation; /** * @author <a href="mailto:alex@jboss.org">Alexey Loubyansky</a> * @version <tt>$Revision: 1.1.4.1 $</tt> */ public interface MyServiceMBean { String myAction(String arg); Object invoke(Invocation mi) throws Exception; }
MyServiceMBean.java |