1 package my.enterprise.beans; 2 3 import javax.ejb.*; 4 5 10 public class NewSessionBean implements javax.ejb.SessionBean , my.enterprise.beans.NewSessionRemoteBusiness, my.enterprise.beans.NewSessionLocalBusiness { 11 private javax.ejb.SessionContext context; 12 13 19 public void setSessionContext (javax.ejb.SessionContext aContext) { 20 context = aContext; 21 } 22 23 26 public void ejbActivate () { 27 28 } 29 30 33 public void ejbPassivate () { 34 35 } 36 37 40 public void ejbRemove () { 41 42 } 43 45 49 public void ejbCreate () { 50 } 55 56 57 58 61 62 63 } 64 | Popular Tags |