1 package org.netbeans.test.j2ee.debug; 2 3 import javax.ejb.*; 4 5 10 public class TestDebugBean implements javax.ejb.SessionBean , org.netbeans.test.j2ee.debug.TestDebugRemoteBusiness { 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 public String testMethod() { 62 StringBuffer test=new StringBuffer ("abc"); 63 test.append(" 1 "); 64 test.append(" 2 "); 65 return test.toString(); 66 } 67 68 69 70 } 71 | Popular Tags |