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

📄 financialaccountsessionfacade.java

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JAVA
字号:
package com.fund.client;

import javax.ejb.EJBObject;
import java.rmi.RemoteException;

/**
 *
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public interface FinancialAccountSessionFacade extends EJBObject {
    /**
     *
     * @param financialAccountDto FinancialAccountDto
     * @throws RemoteException e
     */
    public void createFinancialAccount(FinancialAccountDto financialAccountDto)
            throws
            RemoteException;

    /**
     *
     * @param accountNo Integer
     * @throws RemoteException e
     */
    public void removeFinancialAccount(Integer accountNo) throws
            RemoteException;

    /**
     *
     * @param financialAccountDto FinancialAccountDto
     * @throws RemoteException e
     */
    public void removeFinancialAccount(FinancialAccountDto financialAccountDto)
            throws
            RemoteException;

    /**
     *
     * @param financialAccountDto FinancialAccountDto
     * @throws RemoteException e
     */
    public void updateFinancialAccount(FinancialAccountDto financialAccountDto)
            throws
            RemoteException;

    /**
     *
     * @param financialAccountDtos FinancialAccountDto[]
     * @throws RemoteException e
     */
    public void updateFinancialAccounts(FinancialAccountDto[]
                                        financialAccountDtos) throws
            RemoteException;

    /**
     *
     * @param accountNo Integer
     * @return FinancialAccountDto
     * @throws RemoteException e
     */
    public FinancialAccountDto financialAccountFindByPrimaryKey(Integer
            accountNo) throws RemoteException;

    /**
     *
     * @param clientNo Integer
     * @return FinancialAccountDto
     * @throws RemoteException e
     */
    public FinancialAccountDto financialAccountFindByClientNo(Integer clientNo)
            throws
            RemoteException;
}

⌨️ 快捷键说明

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