AccountLocalHome.java

本文详细介绍了EJB容器中AccountLocalHome接口的功能与实现方法,包括创建本地EJB对象、通过主键查找账户、按所有者名称查找账户集合以及获取银行账户总价值等业务方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package examples;

import javax.ejb.*;
import java.util.Collection;

/**
 * This is the local home interface for Account.  This
 * interface is implemented by the EJB container's tools - the
 * implemented object is called the local home object, which
 * is a factory for local EJB objects.
 */
public interface AccountLocalHome extends EJBLocalHome {

   /**
    * We define a single create() method is in this home interface,
    * which corresponds to the ejbCreate() method in AccountBean.
    * This method creates the local EJB object.
    *
    * Notice that the local home interface returns a
    * local interface, whereas the bean returns a PK.
    *
    * Notice we don't throw RemoteExceptions because we are
    * local not remote.
    *
    * @param accountID The number of the account (unique)
    * @param ownerName The name of the person who owns the account
    * @return The newly created local object.
    */
   AccountLocal create(String accountID, String ownerName) throws CreateException;

   /**
    * Finds an Account by its primary Key (Account ID)
    */
   public AccountLocal findByPrimaryKey(AccountPK key) throws FinderException;

   /**
    * Finds all Accounts under an owner's name
    */
   public Collection findByOwnerName(String name) throws FinderException;

   /**
    * This home business method is independent of any particular
    * account instance.  It returns the total of all the bank
    * accounts in the bank.
    */
   public double getTotalBankValue() throws AccountException;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值