ShoppingCartBean.java~12~
上传用户: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.     System.out.println(" *** ShoppingCartEJB - ejbCreate() ***");
  11.     MyScheduleList = new Vector(10);
  12.   }
  13.   public void ejbCreateCustom(String aUserId, String aUserName) throws CreateException {
  14.     /**@todo Complete this method*/
  15.   }
  16.   public void ejbRemove() {
  17.     /**@todo Complete this method*/
  18.   }
  19.   public void ejbActivate() {
  20.     /**@todo Complete this method*/
  21.   }
  22.   public void ejbPassivate() {
  23.     /**@todo Complete this method*/
  24.   }
  25.   public void setSessionContext(SessionContext sessionContext) {
  26.     this.sessionContext = sessionContext;
  27.   }
  28.   public void addASchedule(ScheduleVO schedule) {
  29.     /**@todo Complete this method*/
  30.   }
  31.   public void deleteASchedule(String ScheduleId) {
  32.     /**@todo Complete this method*/
  33.   }
  34.   public java.util.Vector getMyScheduleList() {
  35.     /**@todo Complete this method*/
  36.     return null;
  37.   }
  38.   public void emptyMyScheduleList() {
  39.     /**@todo Complete this method*/
  40.   }
  41.   public double getTotalCost() {
  42.     /**@todo Complete this method*/
  43.     return 0;
  44.   }
  45.   public void checkOut() {
  46.     /**@todo Complete this method*/
  47.   }
  48. }