KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cmpdb > testCreateCMPBeansFromDB_DiscountCodeLocalBusiness


1
2 package cmpdb;
3
4 import java.math.BigDecimal JavaDoc;
5 import java.util.Collection JavaDoc;
6
7
8 /**
9  * This is the business interface for DiscountCode enterprise bean.
10  */

11 public interface DiscountCodeLocalBusiness {
12     String JavaDoc getDiscountCode();
13
14     BigDecimal JavaDoc getRate();
15
16     void setRate(BigDecimal JavaDoc rate);
17
18     Collection JavaDoc getCustomerBean();
19
20     void setCustomerBean(Collection JavaDoc customerBean);
21     
22 }
23
Popular Tags