fundsessionfacade.java

来自「EJB+Struts+Webservice实现的开放式基金管理系统」· Java 代码 · 共 102 行

JAVA
102
字号
package com.fund.fund;

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

/**
 *
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public interface FundSessionFacade extends EJBObject {
    /**
     *
     * @param fundDto FundDto
     * @throws RemoteException e
     * @throws EJBException e
     */
    public void createFund(FundDto fundDto) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundNo Integer
     * @throws RemoteException e
     * @throws EJBException e
     */
    public void removeFund(Integer fundNo) throws RemoteException, EJBException;

    /**
     *
     * @param fundDto FundDto
     * @throws RemoteException e
     * @throws EJBException e
     */
    public void removeFund(FundDto fundDto) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundDto FundDto
     * @throws RemoteException e
     * @throws EJBException e
     */
    public void updateFund(FundDto fundDto) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundDtos FundDto[]
     * @throws RemoteException e
     * @throws EJBException e
     */
    public void updateFunds(FundDto[] fundDtos) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundNo Integer
     * @return FundDto
     * @throws RemoteException e
     * @throws EJBException e
     */
    public FundDto fundFindByPrimaryKey(Integer fundNo) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundName String
     * @return FundDto
     * @throws RemoteException e
     * @throws EJBException e
     */
    public FundDto fundFindByName(String fundName) throws RemoteException,
            EJBException;

    /**
     *
     * @param fundNo Integer
     * @return Double
     * @throws RemoteException e
     * @throws EJBException e
     */
    public Double getCurrentPrice(Integer fundNo) throws RemoteException,
            EJBException;

    /**
     *
     * @return FundDto[]
     * @throws RemoteException e
     */
    public FundDto[] fundFindGetNormallFunds() throws RemoteException;
}

⌨️ 快捷键说明

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