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

📄 requestevent.java

📁 以前做的一个j2ee的项目
💻 JAVA
字号:
package gov.gdlt.ssgly.taxcore.comm.event;

/**
 * 用来封装客户端传到后台的数据和对应业务处理方法等信息,实际上是一个JavaBean.
 * <p>Title: RequestEvent</p>
 * <p>Description: 税收管理员系统</p>
 * <p>Copyright: Copyright (c) 2005 广州市地方税务局</p>
 * <p>Company: 信息中心</p>
 * since 2005.08.08.
 */

public abstract class RequestEvent implements java.io.Serializable {

    protected String blhClassName;
    protected String dealMethod;
    protected String sessionID;

    public RequestEvent(String blhClassName) {
        this.blhClassName = blhClassName;
    }

    public RequestEvent(String blhClassName, String sessionID) {
        this.blhClassName = blhClassName;
        this.sessionID = sessionID;
    }
    
    public RequestEvent(String blhClassName, String sessionID, String dealMethod) {
        this.blhClassName = blhClassName;
        this.sessionID = sessionID;
        this.dealMethod = dealMethod;
    }

    public String getBlhClassName() {
        return blhClassName;
    }

    public String getDealMethod() {
        return dealMethod;
    }

    public String getSessionID() {
        return sessionID;
    }

    public void setDealMethod(String dealMethod) {
        this.dealMethod = dealMethod;
    }

    public void setBlhClassName(String blhClassName) {
        this.blhClassName = blhClassName;
    }

    public void setSessionID(String sessionID) {
        this.sessionID = sessionID;
    }

}

⌨️ 快捷键说明

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