?? requestevent.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 + -