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

Java编程

开发平台:

Java

  1. package slsbsample;
  2. import javax.ejb.*;
  3. public class ScheduleBean implements SessionBean {
  4.   SessionContext sessionContext;
  5.   public void ejbCreate() throws CreateException {
  6.     /**@todo Complete this method*/
  7.   }
  8.   public void ejbRemove() {
  9.     /**@todo Complete this method*/
  10.   }
  11.   public void ejbActivate() {
  12.     /**@todo Complete this method*/
  13.   }
  14.   public void ejbPassivate() {
  15.     /**@todo Complete this method*/
  16.   }
  17.   public void setSessionContext(SessionContext sessionContext) {
  18.     this.sessionContext = sessionContext;
  19.   }
  20.   public java.util.Vector searchByCourseTitle(String title) {
  21.     /**@todo Complete this method*/
  22.     return null;
  23.   }
  24.   public java.util.Vector searchByScheduleID(String id) {
  25.     /**@todo Complete this method*/
  26.     return null;
  27.   }
  28. }