KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > expand > ExpandTest008Bean


1 package test.expand;
2     
3 import javax.ejb.*;
4   
5 /**
6  * This is the bean class for the ExpandTest008Bean enterprise bean.
7  * Created 4.3.2005 11:10:16
8  * @author lm97939
9  */

10 public class ExpandTest008Bean implements javax.ejb.SessionBean JavaDoc, test.expand.ExpandTest008RemoteBusiness {
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
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     // Enter business methods below. (Right-click in editor and choose
59
// Enterprise JavaBeans (EJB) > Add Business Method)
60

61     public String JavaDoc testMethod() {
62         //TODO implement testMethod
63
return null;
64     }
65     
66
67     
68 }
69   
Popular Tags