KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cmpdb > testCreateCMPBeansFromDB_DiscountCodeTblBean


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

8 public abstract class DiscountCodeTblBean implements javax.ejb.EntityBean JavaDoc, cmpdb.DiscountCodeTblLocalBusiness {
9     private javax.ejb.EntityContext JavaDoc 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(javax.ejb.EntityContext JavaDoc 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 java.lang.String JavaDoc getDiscountCode();
66     public abstract void setDiscountCode(java.lang.String JavaDoc discountCode);
67     
68     public abstract java.math.BigDecimal JavaDoc getRate();
69     public abstract void setRate(java.math.BigDecimal JavaDoc rate);
70     
71     public abstract java.util.Collection JavaDoc getCustomerTblBean();
72     public abstract void setCustomerTblBean(java.util.Collection JavaDoc customerTblBean);
73     
74     
75     public java.lang.String JavaDoc ejbCreate(java.lang.String JavaDoc discountCode, java.math.BigDecimal JavaDoc rate) throws javax.ejb.CreateException JavaDoc {
76         if (discountCode == null) {
77             throw new javax.ejb.CreateException JavaDoc("The field \"discountCode\" must not be null");
78         }
79         
80         // TODO add additional validation code, throw CreateException if data is not valid
81
setDiscountCode(discountCode);
82         setRate(rate);
83         
84         return null;
85     }
86     
87     public void ejbPostCreate(java.lang.String JavaDoc discountCode, java.math.BigDecimal JavaDoc rate) {
88         // TODO populate relationships here if appropriate
89

90     }
91 }
92
Popular Tags