📄 clientcardlocal.java
字号:
package com.ebusiness.ebank.ejb.entitybean;/** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: eBusiness Inc., All right reserved</p> * @author unascribed * @version 1.0 */import javax.ejb.EJBLocalObject;import javax.ejb.EJBException;import com.ebusiness.ebank.bean.ClientCardValue;import com.ebusiness.ebank.exception.BusinessException;import com.ebusiness.ebank.exception.SystemException;public interface ClientCardLocal extends EJBLocalObject{ //Business methods public ClientCardValue getValueObject() throws EJBException; //public long getClientCardOID() throws EJBException; public String getClientCardID() throws EJBException; public long getCardholderOID() throws EJBException; public ClientCardValue ChangePW(String newPassword, boolean changeWebPW) throws EJBException; public ClientCardValue update(ClientCardValue value) throws EJBException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -