KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > test > j2ee > debug > TestDebugBean


1 package org.netbeans.test.j2ee.debug;
2
3 import javax.ejb.*;
4
5 /**
6  * This is the bean class for the TestDebugBean enterprise bean.
7  * Created Jun 7, 2005 11:13:30 AM
8  * @author honza
9  */

10 public class TestDebugBean implements javax.ejb.SessionBean JavaDoc, org.netbeans.test.j2ee.debug.TestDebugRemoteBusiness {
11     private javax.ejb.SessionContext JavaDoc context;
12     
13     // <editor-fold defaultstate="collapsed" desc="EJB infrastructure methods. Click the + sign on the left to edit the code.">
14
// TODO Add code to acquire and use other enterprise resources (DataSource, JMS, enterprise bean, Web services)
15
// TODO Add business methods or web service operations
16
/**
17      * @see javax.ejb.SessionBean#setSessionContext(javax.ejb.SessionContext)
18      */

19     public void setSessionContext(javax.ejb.SessionContext JavaDoc aContext) {
20         context = aContext;
21     }
22     
23     /**
24      * @see javax.ejb.SessionBean#ejbActivate()
25      */

26     public void ejbActivate() {
27         
28     }
29     
30     /**
31      * @see javax.ejb.SessionBean#ejbPassivate()
32      */

33     public void ejbPassivate() {
34         
35     }
36     
37     /**
38      * @see javax.ejb.SessionBean#ejbRemove()
39      */

40     public void ejbRemove() {
41         
42     }
43     // </editor-fold>
44

45     /**
46      * See section 7.10.3 of the EJB 2.0 specification
47      * See section 7.11.3 of the EJB 2.1 specification
48      */

49     public void ejbCreate() {
50         // TODO implement ejbCreate if necessary, acquire resources
51
// This method has access to the JNDI context so resource aquisition
52
// spanning all methods can be performed here such as home interfaces
53
// and data sources.
54
}
55     
56     
57     
58     // Add business logic below. (Right-click in editor and choose
59
// "EJB Methods > Add Business Method" or "Web Service > Add Operation")
60

61     public String JavaDoc testMethod() {
62         StringBuffer JavaDoc test=new StringBuffer JavaDoc("abc");
63         test.append(" 1 ");
64         test.append(" 2 ");
65         return test.toString();
66     }
67     
68     
69     
70 }
71
Popular Tags