KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ejb > TestSessionBean


1 package ejb;
2
3 import javax.ejb.*;
4
5 /**
6  * This is the bean class for the TestSessionBean enterprise bean.
7  * Created Jan 11, 2006 9:10:39 PM
8  * @author marigan
9  */

10 public class TestSessionBean implements SessionBean, TestSessionLocalBusiness {
11     private SessionContext 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(SessionContext 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 greet(final String JavaDoc who) {
62         //TODO implement greet
63
return "Greetings "+who;
64     }
65     
66     
67     
68 }
69
Popular Tags