1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 */7 package org.jboss.tutorial.consumer.bean;8 9 10 11 12 /**13 * Comment14 *15 * @author <a HREF="mailto:bill@jboss.org">Bill Burke</a>16 * @version $Revision: 1.2.2.3 $17 */18 public interface Tester19 {20 void testXA() throws Exception ;21 22 void testLocal() throws Exception ;23 }24