KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xdoclet > retest > ref > ejb > ejb > SimpleSLSession


1 /*
2 * $Id: SimpleSLSession.java,v 1.2 2002/06/12 21:27:53 ara_e_w Exp $
3 */

4 package xdoclet.retest.ref.ejb.ejb;
5
6 public class SimpleSLSession
7         extends xdoclet.retest.bean.ejb.ejb.SimpleSLBean
8         implements javax.ejb.SessionBean JavaDoc
9 {
10     public void ejbActivate()
11     {
12     }
13
14     public void ejbPassivate()
15     {
16     }
17
18     public void setSessionContext(javax.ejb.SessionContext JavaDoc ctx)
19     {
20     }
21
22     public void unsetSessionContext()
23     {
24     }
25
26     public void ejbRemove()
27     {
28     }
29
30     public void ejbCreate()
31     {
32     }
33
34 }
35
Popular Tags