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

Java编程

开发平台:

Java

  1. package dempcmp;
  2. import javax.ejb.*;
  3. abstract public class StudentBean implements EntityBean {
  4.   EntityContext entityContext;
  5.   public java.lang.String ejbCreate(java.lang.String studentID) throws CreateException  {
  6.     setStudentID(studentID);
  7.     return null;
  8.   }
  9.   public void ejbPostCreate(java.lang.String studentID) throws CreateException  {
  10.     /**@todo Complete this method*/
  11.   }
  12.   public void ejbRemove() throws RemoveException  {
  13.     /**@todo Complete this method*/
  14.   }
  15.   public abstract void setStudentID(java.lang.String studentID);
  16.   public abstract void setFirstname(java.lang.String firstname);
  17.   public abstract void setLastname(java.lang.String lastname);
  18.   public abstract java.lang.String getStudentID();
  19.   public abstract java.lang.String getFirstname();
  20.   public abstract java.lang.String getLastname();
  21.   public void ejbLoad() {
  22.     /**@todo Complete this method*/
  23.   }
  24.   public void ejbStore() {
  25.     /**@todo Complete this method*/
  26.   }
  27.   public void ejbActivate() {
  28.     /**@todo Complete this method*/
  29.   }
  30.   public void ejbPassivate() {
  31.     /**@todo Complete this method*/
  32.   }
  33.   public void setEntityContext(EntityContext entityContext) {
  34.     this.entityContext = entityContext;
  35.   }
  36.   public void unsetEntityContext() {
  37.     this.entityContext = null;
  38.   }
  39. }