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

Java编程

开发平台:

Java

  1. package com.cwj.entitybeandempcmp;
  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 java.lang.String ejbCreate() throws CreateException {
  10.     /**@todo Complete this method*/
  11.     return null;
  12.   }
  13.   public void ejbPostCreate(java.lang.String studentID) throws CreateException {
  14.     /**@todo Complete this method*/
  15.   }
  16.   public void ejbPostCreate() throws CreateException {
  17.     /**@todo Complete this method*/
  18.   }
  19.   public void ejbRemove() throws RemoveException {
  20.     /**@todo Complete this method*/
  21.   }
  22.   public abstract void setStudentID(java.lang.String studentID);
  23.   public abstract void setFirstname(java.lang.String firstname);
  24.   public abstract void setLastname(java.lang.String lastname);
  25.   public abstract java.lang.String getStudentID();
  26.   public abstract java.lang.String getFirstname();
  27.   public abstract java.lang.String getLastname();
  28.   public void ejbLoad() {
  29.     /**@todo Complete this method*/
  30.   }
  31.   public void ejbStore() {
  32.     /**@todo Complete this method*/
  33.   }
  34.   public void ejbActivate() {
  35.     /**@todo Complete this method*/
  36.   }
  37.   public void ejbPassivate() {
  38.     /**@todo Complete this method*/
  39.   }
  40.   public void unsetEntityContext() {
  41.     this.entityContext = null;
  42.   }
  43.   public void setEntityContext(EntityContext entityContext) {
  44.     this.entityContext = entityContext;
  45.   }
  46. }