KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cmpdb > testCreateCMPBeansFromDB_MicroMarketsBean


1 package cmpdb;
2
3 import javax.ejb.*;
4
5 /**
6  * This is the bean class for the MicroMarketsBean enterprise bean.
7  */

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

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

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

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

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

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

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

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

64     
65     public abstract String JavaDoc getZipCode();
66     public abstract void setZipCode(String JavaDoc zipCode);
67     
68     public abstract Double JavaDoc getRadius();
69     public abstract void setRadius(Double JavaDoc radius);
70     
71     public abstract Double JavaDoc getAreaLength();
72     public abstract void setAreaLength(Double JavaDoc areaLength);
73     
74     public abstract Double JavaDoc getAreaWidth();
75     public abstract void setAreaWidth(Double JavaDoc areaWidth);
76     
77     
78     public String JavaDoc ejbCreate(String JavaDoc zipCode, Double JavaDoc radius, Double JavaDoc areaLength, Double JavaDoc areaWidth) throws CreateException {
79         if (zipCode == null) {
80             throw new CreateException("The field \"zipCode\" must not be null");
81         }
82         
83         // TODO add additional validation code, throw CreateException if data is not valid
84
setZipCode(zipCode);
85         setRadius(radius);
86         setAreaLength(areaLength);
87         setAreaWidth(areaWidth);
88         
89         return null;
90     }
91     
92     public void ejbPostCreate(String JavaDoc zipCode, Double JavaDoc radius, Double JavaDoc areaLength, Double JavaDoc areaWidth) {
93         // TODO populate relationships here if appropriate
94

95     }
96 }
97
Popular Tags