1 | public class ShoppingCartEJB |
2 | implements SessionBean |
3 | { |
4 | public boolean addItem(int itemNumber) { |
5 | // the code for adding items to the cart |
6 | // may include JDBC™ code. |
7 | } |
8 | public boolean purchase () { |
9 | // the code for purchases |
10 | } |
11 | public void ejbCreate(String accountName, |
12 | String account) { |
13 | // object initialization code |
14 | } |
15 | } |