1 22 package org.jboss.test.perf.ejb; 23 24 import javax.ejb.CreateException ; 25 26 import org.jboss.test.util.ejb.SessionSupport; 27 28 32 public class ProbeBean extends SessionSupport 33 { 34 35 public void ejbCreate() throws CreateException  37 { 38 } 39 41 45 public void noop() 46 { 47 } 48 50 public void ping(String arg) 51 { 52 } 53 56 public String echo(String arg) 57 { 58 return arg; 59 } 60 } 62 | Popular Tags |