⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basicentitybean.java

📁 考勤管理系统源码
💻 JAVA
字号:
package com.wiley.compBooks.EJwithUML.Base.EjbUtil;

import java.rmi.*;
import javax.ejb.*;
import javax.naming.*;

/**
 * An adapter base class for all entity beans. it provides default
 * implementations for all the required methods of the EntityBean interface.
 */
public class BasicEntityBean implements EntityBean
{
  protected EntityContext context;

  public BasicEntityBean()
  {
  }

  public void setEntityContext(EntityContext context) throws RemoteException
  {
    this.context = context;
  }

  public void unsetEntityContext() throws RemoteException
  {
    this.context = null;
  }

  public void ejbPassivate() throws RemoteException
  {
  }

  public void ejbRemove() throws RemoteException
  {
  }

  public void ejbLoad() throws RemoteException
  {
  }

  public void ejbStore() throws RemoteException
  {
  }

  public void ejbActivate() throws RemoteException
  {
  }

}

⌨️ 快捷键说明

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