1 7 8 package org.jboss.test.net.hello.server; 9 10 import javax.ejb.EJBException; 11 12 import org.jboss.test.util.ejb.SessionSupport; 13 14 import org.jboss.test.net.hello.HelloData; 15 16 31 32 public class HelloBean 33 extends SessionSupport implements javax.ejb.SessionBean 34 { 35 39 40 public String hello(String name) 41 { 42 return "Hello "+name+"!"; 43 } 44 45 51 52 56 57 public String howdy(HelloData name) 58 { 59 return "Howdy "+name.getName()+"!"; 60 } 61 62 public void throwException() 63 { 64 throw new EJBException("Something went wrong"); 65 } 66 } 67 | Popular Tags |