1 package test.ejb; 2 3 12 public abstract class StatefulBean implements javax.ejb.SessionBean { 13 private String x; 14 15 18 public String foobar() { 19 return "Foobar"; 20 } 21 22 25 public void ejbCreateWithParam(String x) { 26 this.x = x; 27 } 28 29 32 public void ejbCreate(String x) { 33 this.x = x; 34 } 35 36 41 public void txrequiresnew() { 42 ; } 44 } 45 | Popular Tags |