KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > EntityABean


1 package test;
2
3 import javax.ejb.*;
4
5 /**
6  * This is the bean class for the EntityABean enterprise bean.
7  * Created Nov 23, 2005 4:07:44 PM
8  * @author honza
9  */

10 public abstract class EntityABean implements EntityBean, EntityARemoteBusiness, EntityALocalBusiness {
11     private EntityContext context;
12     
13     // <editor-fold defaultstate="collapsed" desc="EJB infrastructure methods. Click on the + sign on the left to edit the code.">
14
// TODO Consider creating Transfer Object to encapsulate data
15
// TODO Review finder methods
16
/**
17      * @see javax.ejb.EntityBean#setEntityContext(javax.ejb.EntityContext)
18      */

19     public void setEntityContext(EntityContext aContext) {
20         context = aContext;
21     }
22     
23     /**
24      * @see javax.ejb.EntityBean#ejbActivate()
25      */

26     public void ejbActivate() {
27         
28     }
29     
30     /**
31      * @see javax.ejb.EntityBean#ejbPassivate()
32      */

33     public void ejbPassivate() {
34         
35     }
36     
37     /**
38      * @see javax.ejb.EntityBean#ejbRemove()
39      */

40     public void ejbRemove() {
41         
42     }
43     
44     /**
45      * @see javax.ejb.EntityBean#unsetEntityContext()
46      */

47     public void unsetEntityContext() {
48         context = null;
49     }
50     
51     /**
52      * @see javax.ejb.EntityBean#ejbLoad()
53      */

54     public void ejbLoad() {
55         
56     }
57     
58     /**
59      * @see javax.ejb.EntityBean#ejbStore()
60      */

61     public void ejbStore() {
62         
63     }
64     // </editor-fold>
65

66     
67     public abstract String JavaDoc getKey();
68     public abstract void setKey(String JavaDoc key);
69     
70     
71     public String JavaDoc ejbCreate(String JavaDoc key) throws CreateException {
72         if (key == null) {
73             throw new CreateException("The field \"key\" must not be null");
74         }
75         
76         // TODO add additional validation code, throw CreateException if data is not valid
77
setKey(key);
78         
79         return null;
80     }
81     
82     public void ejbPostCreate(String JavaDoc key) {
83         // TODO populate relationships here if appropriate
84

85     }
86 }
87
Popular Tags