📄 fundsessionfacade.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -