KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cmp2 > fkstackoverflow > ejb > SimpleParentCMP


1 /*
2  * Generated by XDoclet - Do not edit!
3  */

4 package org.jboss.test.cmp2.fkstackoverflow.ejb;
5
6 /**
7  * CMP layer for SimpleParent.
8  */

9 public abstract class SimpleParentCMP
10    extends org.jboss.test.cmp2.fkstackoverflow.ejb.SimpleParentBean
11    implements javax.ejb.EntityBean JavaDoc
12 {
13
14    public void ejbLoad()
15    {
16       super.ejbLoad();
17    }
18
19    public void ejbStore()
20    {
21          super.ejbStore();
22    }
23
24    public void ejbActivate()
25    {
26       super.ejbActivate();
27    }
28
29    public void ejbPassivate()
30    {
31       super.ejbPassivate();
32
33    }
34
35    public void setEntityContext(javax.ejb.EntityContext JavaDoc ctx)
36    {
37       super.setEntityContext(ctx);
38    }
39
40    public void unsetEntityContext()
41    {
42       super.unsetEntityContext();
43    }
44
45    public void ejbRemove() throws javax.ejb.RemoveException JavaDoc
46    {
47       super.ejbRemove();
48
49    }
50
51    public abstract java.lang.Long JavaDoc getId() ;
52
53    public abstract void setId( java.lang.Long JavaDoc id ) ;
54
55    public abstract java.lang.String JavaDoc getFirstName() ;
56
57    public abstract void setFirstName( java.lang.String JavaDoc firstName ) ;
58
59 }
60
Popular Tags