KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > cmp2 > fkmapping > ejb > ChildUPKCMP


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

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

9 public abstract class ChildUPKCMP
10    extends org.jboss.test.cmp2.fkmapping.ejb.ChildCMPUnknownPKBean
11    implements javax.ejb.EntityBean JavaDoc
12 {
13
14    /**
15     * Generated ejbPostCreate for corresponding ejbCreate method.
16     *
17     * @see #ejbCreate(java.lang.String firstName)
18     */

19    public void ejbPostCreate(java.lang.String JavaDoc firstName)
20    {
21    }
22
23    public void ejbLoad()
24    {
25       super.ejbLoad();
26    }
27
28    public void ejbStore()
29    {
30          super.ejbStore();
31    }
32
33    public void ejbActivate()
34    {
35       super.ejbActivate();
36    }
37
38    public void ejbPassivate()
39    {
40       super.ejbPassivate();
41
42    }
43
44    public void setEntityContext(javax.ejb.EntityContext JavaDoc ctx)
45    {
46       super.setEntityContext(ctx);
47    }
48
49    public void unsetEntityContext()
50    {
51       super.unsetEntityContext();
52    }
53
54    public void ejbRemove() throws javax.ejb.RemoveException JavaDoc
55    {
56       super.ejbRemove();
57
58    }
59
60    public abstract java.lang.String JavaDoc getFirstName() ;
61
62    public abstract void setFirstName( java.lang.String JavaDoc firstName ) ;
63
64 }
65
Popular Tags