1 4 package test.ejb; 5 6 13 public class TellerSession 14 extends test.ejb.TellerBean 15 implements javax.ejb.SessionBean  16 { 17 public void ejbActivate() 18 { 19 20 super.ejbActivate(); 21 } 22 23 public void ejbPassivate() 24 { 25 super.ejbPassivate(); 26 } 27 28 public void setSessionContext(javax.ejb.SessionContext ctx) 29 { 30 super.setSessionContext(ctx); 31 } 32 33 public void unsetSessionContext() 34 { 35 } 36 37 public void ejbRemove() 38 { 39 super.ejbRemove(); 40 } 41 42 public void ejbCreate() throws javax.ejb.CreateException  43 { 44 } 45 46 } 47 | Popular Tags |