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

Java编程

开发平台:

Java

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