1 19 20 package org.openejb.test.simple.sfsb; 21 22 import javax.ejb.EJBException ; 23 import javax.ejb.SessionBean ; 24 import javax.ejb.SessionContext ; 25 26 31 public class SimpleStatefulSessionEJB implements SessionBean { 32 private String value; 33 34 public SimpleStatefulSessionEJB() { 35 value = "nothing"; 36 } 37 38 public String getValue() { 39 return value; 40 } 41 42 public void setValue(String value) { 43 this.value = value; 44 } 45 46 public void ejbCreate() { 47 } 48 49 public void ejbActivate() throws EJBException { 50 } 51 52 public void ejbPassivate() throws EJBException { 53 } 54 55 public void ejbRemove() throws EJBException { 56 } 57 58 public void setSessionContext(SessionContext ctx) throws EJBException { 59 } 60 } 61 | Popular Tags |