employeepermcmpbean.java

来自「jbuilder9+weblogic8+oracle9开发的客户管理系统。服务器」· Java 代码 · 共 42 行

JAVA
42
字号
package testejb;import javax.ejb.*;abstract public class EmployeePermcmpBean implements EntityBean {  EntityContext entityContext;  public EmployeePermcmpPK ejbCreate(java.lang.String employeeId, java.lang.String permCode) throws CreateException {    setEmployeeId(employeeId);    setPermCode(permCode);    return null;  }  public void ejbPostCreate(java.lang.String employeeId, java.lang.String permCode) throws CreateException {    /**@todo Complete this method*/  }  public void ejbRemove() throws RemoveException {    /**@todo Complete this method*/  }  public abstract void setEmployeeId(java.lang.String employeeId);  public abstract void setPermCode(java.lang.String permCode);  public abstract void setPerm(testejb.Perm perm);  public abstract java.lang.String getEmployeeId();  public abstract java.lang.String getPermCode();  public abstract testejb.Perm getPerm();  public void ejbLoad() {    /**@todo Complete this method*/  }  public void ejbStore() {    /**@todo Complete this method*/  }  public void ejbActivate() {    /**@todo Complete this method*/  }  public void ejbPassivate() {    /**@todo Complete this method*/  }  public void unsetEntityContext() {    this.entityContext = null;  }  public void setEntityContext(EntityContext entityContext) {    this.entityContext = entityContext;  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?