ShoppingCartBean.java~10~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package sfsbsample;
  2. import javax.ejb.*;
  3. public class ShoppingCartBean implements SessionBean {
  4.   SessionContext sessionContext;
  5.   public void ejbCreate() throws CreateException {
  6.     /**@todo Complete this method*/
  7.   }
  8.   public void ejbCreateCustom(String aUserId, String aUserName) throws CreateException {
  9.     /**@todo Complete this method*/
  10.   }
  11.   public void ejbRemove() {
  12.     /**@todo Complete this method*/
  13.   }
  14.   public void ejbActivate() {
  15.     /**@todo Complete this method*/
  16.   }
  17.   public void ejbPassivate() {
  18.     /**@todo Complete this method*/
  19.   }
  20.   public void setSessionContext(SessionContext sessionContext) {
  21.     this.sessionContext = sessionContext;
  22.   }
  23.   public void addASchedule(ScheduleVO schedule) {
  24.     /**@todo Complete this method*/
  25.   }
  26.   public void deleteASchedule(String ScheduleId) {
  27.     /**@todo Complete this method*/
  28.   }
  29.   public java.util.Vector getMyScheduleList() {
  30.     /**@todo Complete this method*/
  31.     return null;
  32.   }
  33.   public void emptyMyScheduleList() {
  34.     /**@todo Complete this method*/
  35.   }
  36.   public double getTotalCost() {
  37.     /**@todo Complete this method*/
  38.     return 0;
  39.   }
  40.   public void checkOut() {
  41.     /**@todo Complete this method*/
  42.   }
  43. }