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

📄 financialaccountbean.java

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

import javax.ejb.EntityBean;
import javax.ejb.EntityContext;
import javax.ejb.CreateException;
import javax.ejb.RemoveException;
import java.sql.Timestamp;

/**
 *
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2005</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public abstract class FinancialAccountBean implements EntityBean {
    /**
     * entityContext
     */
    EntityContext entityContext;
    /**
     * ejbCreate
     * @param accountNo Integer
     * @return Integer
     * @throws CreateException e
     */
    public Integer ejbCreate(Integer accountNo) throws CreateException {
        setAccountNo(accountNo);
        return null;
    }

    /**
     * ejbPostCreate
     * @param accountNo Integer
     * @throws CreateException e
     */
    public void ejbPostCreate(Integer accountNo) throws CreateException {
    }

    /**
     * ejbRemove
     * @throws RemoveException e
     */
    public void ejbRemove() throws RemoveException {
    }

    /**
     * setAccountNo
     * @param accountNo Integer
     */
    public abstract void setAccountNo(Integer accountNo);

    /**
     * getAccountNo
     * @return Integer
     */
    public abstract Integer getAccountNo();

    /**
     * setClientNo
     * @param clientNo Integer
     */
    public abstract void setClientNo(Integer clientNo);

    /**
     * getClientNo
     * @return Integer
     */
    public abstract Integer getClientNo();

    /**
     * setFinancingAmount
     * @param financingAmount Double
     */
    public abstract void setFinancingAmount(Double financingAmount);

    /**
     * getFinancingAmount
     * @return Double
     */
    public abstract Double getFinancingAmount();

    /**
     * setCreatedDate
     * @param createdDate Timestamp
     */
    public abstract void setCreatedDate(Timestamp createdDate);

    /**
     * getCreatedDate
     * @return Timestamp
     */
    public abstract Timestamp getCreatedDate();

    /**
     * setStatus
     * @param status String
     */
    public abstract void setStatus(String status);

    /**
     * getStatus
     * @return String
     */
    public abstract String getStatus();

    /**
     * setPassword
     * @param password String
     */
    public abstract void setPassword(String password);

    /**
     * getPassword
     * @return String
     */
    public abstract String getPassword();

    /**
     * ejbLoad
     */
    public void ejbLoad() {
    }

    /**
     * ejbStore
     */
    public void ejbStore() {
    }

    /**
     * ejbActivate
     */
    public void ejbActivate() {
    }

    /**
     *ejbPassivate
     */
    public void ejbPassivate() {
    }

    /**
     *unsetEntityContext
     */
    public void unsetEntityContext() {
        this.entityContext = null;
    }

    /**
     * setEntityContext
     * @param entityContext EntityContext
     */
    public void setEntityContext(EntityContext entityContext) {
        this.entityContext = entityContext;
    }

}

⌨️ 快捷键说明

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