TestResourceAdapterMBean.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.jca.inflow; /** * Management interface of TestResourceAdapter. * * @author <a href="adrian@jboss.com">Adrian Brock</a> * @version $Revision: 1.3 $ */ public interface TestResourceAdapterMBean { TestResourceAdapterInflowResults testInflow() throws Exception; TestResourceAdapterTimerResults testTimer() throws Exception; TestResourceAdapterTxInflowResults testTxInflow() throws Exception; TestResourceAdapterWorkManagerResults testWorkManager() throws Exception; }
TestResourceAdapterMBean.java |