RemotingTesterMBean.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.aop.bean; /** * * * @author <a href="mailto:bill@jboss.org">Bill Burke</a> * @version $Revision: 1.8 $ */ public interface RemotingTesterMBean extends org.jboss.system.ServiceMBean { public POJO testRemoting(); public NonadvisedPOJO testNonadvisedRemoting(); public POJO testClusteredRemoting(); public NonadvisedPOJO testClusteredNonadvisedRemoting(); public void unregisterTarget(Object object); }
RemotingTesterMBean.java |