1 package test; 2 3 import javax.ejb.*; 4 5 10 public class TestingSessionBean implements SessionBean, TestingSessionRemoteBusiness, TestingSessionLocalBusiness { 11 private SessionContext context; 12 13 19 public void setSessionContext(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 public String testBusinessMethod1() { 62 return null; 64 } 65 66 public String testBusinessMethod2(String a, int b) throws Exception { 67 return null; 69 } 70 71 private test.TestingEntityLocalHome lookupTestingEntityBean() { 72 try { 73 javax.naming.Context c = new javax.naming.InitialContext (); 74 test.TestingEntityLocalHome rv = (test.TestingEntityLocalHome) c.lookup("java:comp/env/ejb/TestingEntityBean"); 75 return rv; 76 } 77 catch(javax.naming.NamingException ne) { 78 java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne); 79 throw new RuntimeException (ne); 80 } 81 } 82 83 private test.TestingEntityRemoteHome lookupMyTestingEntityBean() { 84 try { 85 javax.naming.Context c = new javax.naming.InitialContext (); 86 Object remote = c.lookup("java:comp/env/ejb/MyTestingEntityBean"); 87 test.TestingEntityRemoteHome rv = (test.TestingEntityRemoteHome) javax.rmi.PortableRemoteObject.narrow(remote, test.TestingEntityRemoteHome.class); 88 return rv; 89 } 90 catch(javax.naming.NamingException ne) { 91 java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne); 92 throw new RuntimeException (ne); 93 } 94 } 95 96 private javax.sql.DataSource getMyTestingDatabase() throws javax.naming.NamingException { 97 javax.naming.Context c = new javax.naming.InitialContext (); 98 return (javax.sql.DataSource ) c.lookup("java:comp/env/jdbc/myTestingDatabase"); 99 } 100 101 102 103 } 104
| Popular Tags
|