first commit
This commit is contained in:
767
hrmsEjb/wenrgise/common/webtier/form/BaseForm.java
Normal file
767
hrmsEjb/wenrgise/common/webtier/form/BaseForm.java
Normal file
@@ -0,0 +1,767 @@
|
||||
package wenrgise.common.webtier.form;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import org.apache.struts.action.ActionErrors;
|
||||
import org.apache.struts.action.ActionForm;
|
||||
import org.apache.struts.action.ActionMapping;
|
||||
|
||||
public class BaseForm extends ActionForm {
|
||||
private long totalHeaderRecord = 0L;
|
||||
|
||||
private long totalDetailRecord = 0L;
|
||||
|
||||
private ArrayList detailList = null;
|
||||
|
||||
private String headerPrimaryKey = null;
|
||||
|
||||
private long pageRequested = 0L;
|
||||
|
||||
private String userPageRequested = null;
|
||||
|
||||
private String[] detailId = null;
|
||||
|
||||
private String[] status = null;
|
||||
|
||||
private String screenName = null;
|
||||
|
||||
private boolean headerDataChanged = false;
|
||||
|
||||
private boolean detailDataChanged = false;
|
||||
|
||||
private int detailStartPage = 0;
|
||||
|
||||
private String screenMode = "Q";
|
||||
|
||||
private String forwardedPage = null;
|
||||
|
||||
private boolean[] checked = null;
|
||||
|
||||
private long positionRequested = 0L;
|
||||
|
||||
private String userPositionRequested = null;
|
||||
|
||||
private long totalCount = 0L;
|
||||
|
||||
private String newPositionRequested = null;
|
||||
|
||||
private String[] itemChecked = null;
|
||||
|
||||
private String newPageRequested = null;
|
||||
|
||||
private String lovKey;
|
||||
|
||||
private String txtSearchFields;
|
||||
|
||||
private String txtDisplayFields;
|
||||
|
||||
private String txtIndex;
|
||||
|
||||
private int thisPageDetailCount = 0;
|
||||
|
||||
private boolean queried = true;
|
||||
|
||||
String butQuery;
|
||||
|
||||
String butInsert;
|
||||
|
||||
String disabbutInsert;
|
||||
|
||||
String butExecute;
|
||||
|
||||
String disabbutExecute;
|
||||
|
||||
String butSave;
|
||||
|
||||
String disabbutSave;
|
||||
|
||||
String butDelete;
|
||||
|
||||
String disabbutDelete;
|
||||
|
||||
String butRefresh;
|
||||
|
||||
String disabbutRefresh;
|
||||
|
||||
String butHelp;
|
||||
|
||||
String disabbutHelp;
|
||||
|
||||
String butPrint;
|
||||
|
||||
String disabbutPrint;
|
||||
|
||||
String butNextHeader;
|
||||
|
||||
String disabbutNextHeader;
|
||||
|
||||
String butPrevHeader;
|
||||
|
||||
String disabbutPrevHeader;
|
||||
|
||||
String butGetDetail;
|
||||
|
||||
String disabbutGetDetail;
|
||||
|
||||
String butJumpHeader;
|
||||
|
||||
String disabbutJumpHeader;
|
||||
|
||||
String butJumpDetail;
|
||||
|
||||
String disabbutJumpDetail;
|
||||
|
||||
private String butExit;
|
||||
|
||||
private String disabbutExit;
|
||||
|
||||
private String disabheaderStatus;
|
||||
|
||||
private String disabbutQuery;
|
||||
|
||||
private String butNextDetail;
|
||||
|
||||
String butPrevDetail;
|
||||
|
||||
private String disabbutPrevDetail;
|
||||
|
||||
private String disabbutNextDetail;
|
||||
|
||||
private String disabnewPageRequested;
|
||||
|
||||
private String disabnewPositionRequested;
|
||||
|
||||
private String butAddRow;
|
||||
|
||||
private String butDelRow;
|
||||
|
||||
private String disabbutAddRow;
|
||||
|
||||
private String disabbutDelRow;
|
||||
|
||||
private long totalPageCount;
|
||||
|
||||
private String headerStatus;
|
||||
|
||||
private String buttonClicked;
|
||||
|
||||
private String buttonName;
|
||||
|
||||
protected String firstLoad;
|
||||
|
||||
private String confirmKey;
|
||||
|
||||
private String buttonKeys;
|
||||
|
||||
private String workListId;
|
||||
|
||||
private String hidWorkListId;
|
||||
|
||||
public void reset(ActionMapping mapping, HttpServletRequest request) {
|
||||
super.reset(mapping, request);
|
||||
}
|
||||
|
||||
public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) {
|
||||
return super.validate(mapping, request);
|
||||
}
|
||||
|
||||
public long getTotalDetailRecord() {
|
||||
return this.totalDetailRecord;
|
||||
}
|
||||
|
||||
public void setTotalDetailRecord(long newTotalDetailRecord) {
|
||||
this.totalDetailRecord = newTotalDetailRecord;
|
||||
}
|
||||
|
||||
public long getTotalHeaderRecord() {
|
||||
return this.totalHeaderRecord;
|
||||
}
|
||||
|
||||
public void setTotalHeaderRecord(long newTotalHeaderRecord) {
|
||||
this.totalHeaderRecord = newTotalHeaderRecord;
|
||||
}
|
||||
|
||||
public ArrayList getDetailList() {
|
||||
return this.detailList;
|
||||
}
|
||||
|
||||
public void setDetailList(ArrayList newDetailList) {
|
||||
this.detailList = newDetailList;
|
||||
}
|
||||
|
||||
public String getHeaderPrimaryKey() {
|
||||
return this.headerPrimaryKey;
|
||||
}
|
||||
|
||||
public void setHeaderPrimaryKey(String newHeaderPrimaryKey) {
|
||||
this.headerPrimaryKey = newHeaderPrimaryKey;
|
||||
}
|
||||
|
||||
public long getPageRequested() {
|
||||
return this.pageRequested;
|
||||
}
|
||||
|
||||
public void setPageRequested(long newPageRequested) {
|
||||
this.pageRequested = newPageRequested;
|
||||
}
|
||||
|
||||
public String[] getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
public void setStatus(String[] newStatus) {
|
||||
this.status = newStatus;
|
||||
}
|
||||
|
||||
public String[] getDetailId() {
|
||||
return this.detailId;
|
||||
}
|
||||
|
||||
public void setDetailId(String[] newDetailId) {
|
||||
this.detailId = newDetailId;
|
||||
}
|
||||
|
||||
public String getScreenName() {
|
||||
return this.screenName;
|
||||
}
|
||||
|
||||
public void setScreenName(String newScreenName) {
|
||||
this.screenName = newScreenName;
|
||||
}
|
||||
|
||||
public boolean isHeaderDataChanged() {
|
||||
return this.headerDataChanged;
|
||||
}
|
||||
|
||||
public void setHeaderDataChanged(boolean newHeaderDataChanged) {
|
||||
this.headerDataChanged = newHeaderDataChanged;
|
||||
}
|
||||
|
||||
public boolean isDetailDataChanged() {
|
||||
return this.detailDataChanged;
|
||||
}
|
||||
|
||||
public void setDetailDataChanged(boolean newDetailDataChanged) {
|
||||
this.detailDataChanged = newDetailDataChanged;
|
||||
}
|
||||
|
||||
public int getDetailStartPage() {
|
||||
return this.detailStartPage;
|
||||
}
|
||||
|
||||
public void setDetailStartPage(int newDetailStartPage) {
|
||||
this.detailStartPage = newDetailStartPage;
|
||||
}
|
||||
|
||||
public String getScreenMode() {
|
||||
return this.screenMode;
|
||||
}
|
||||
|
||||
public void setScreenMode(String newScreenMode) {
|
||||
this.screenMode = newScreenMode;
|
||||
}
|
||||
|
||||
public String getForwardedPage() {
|
||||
return this.forwardedPage;
|
||||
}
|
||||
|
||||
public void setForwardedPage(String newForwardedPage) {
|
||||
this.forwardedPage = newForwardedPage;
|
||||
}
|
||||
|
||||
public boolean[] getChecked() {
|
||||
return this.checked;
|
||||
}
|
||||
|
||||
public void setChecked(boolean[] newChecked) {
|
||||
this.checked = newChecked;
|
||||
}
|
||||
|
||||
public long getPositionRequested() {
|
||||
return this.positionRequested;
|
||||
}
|
||||
|
||||
public void setPositionRequested(long newPositionRequested) {
|
||||
this.positionRequested = newPositionRequested;
|
||||
}
|
||||
|
||||
public long getTotalCount() {
|
||||
return this.totalCount;
|
||||
}
|
||||
|
||||
public void setTotalCount(long newTotalCount) {
|
||||
this.totalCount = newTotalCount;
|
||||
}
|
||||
|
||||
public String getNewPositionRequested() {
|
||||
return this.newPositionRequested;
|
||||
}
|
||||
|
||||
public void setNewPositionRequested(String newNewPositionRequested) {
|
||||
this.newPositionRequested = newNewPositionRequested;
|
||||
}
|
||||
|
||||
public String[] getItemChecked() {
|
||||
return this.itemChecked;
|
||||
}
|
||||
|
||||
public void setItemChecked(String[] newItemChecked) {
|
||||
this.itemChecked = newItemChecked;
|
||||
}
|
||||
|
||||
public String getLovKey() {
|
||||
return this.lovKey;
|
||||
}
|
||||
|
||||
public void setLovKey(String newLovKey) {
|
||||
this.lovKey = newLovKey;
|
||||
}
|
||||
|
||||
public String getTxtIndex() {
|
||||
return this.txtIndex;
|
||||
}
|
||||
|
||||
public void setTxtIndex(String newTxtIndex) {
|
||||
this.txtIndex = newTxtIndex;
|
||||
}
|
||||
|
||||
public String getNewPageRequested() {
|
||||
return this.newPageRequested;
|
||||
}
|
||||
|
||||
public void setNewPageRequested(String newNewPageRequested) {
|
||||
this.newPageRequested = newNewPageRequested;
|
||||
}
|
||||
|
||||
public String getUserPageRequested() {
|
||||
return this.userPageRequested;
|
||||
}
|
||||
|
||||
public void setUserPageRequested(String newUserPageRequested) {
|
||||
this.userPageRequested = newUserPageRequested;
|
||||
}
|
||||
|
||||
public String getUserPositionRequested() {
|
||||
return this.userPositionRequested;
|
||||
}
|
||||
|
||||
public void setUserPositionRequested(String newUserPositionRequested) {
|
||||
this.userPositionRequested = newUserPositionRequested;
|
||||
}
|
||||
|
||||
public int getThisPageDetailCount() {
|
||||
return this.thisPageDetailCount;
|
||||
}
|
||||
|
||||
public void setThisPageDetailCount(int newThisPageDetailCount) {
|
||||
this.thisPageDetailCount = newThisPageDetailCount;
|
||||
}
|
||||
|
||||
public String getTxtDisplayFields() {
|
||||
return this.txtDisplayFields;
|
||||
}
|
||||
|
||||
public void setTxtDisplayFields(String newTxtDisplayFields) {
|
||||
this.txtDisplayFields = newTxtDisplayFields;
|
||||
}
|
||||
|
||||
public String getTxtSearchFields() {
|
||||
return this.txtSearchFields;
|
||||
}
|
||||
|
||||
public void setTxtSearchFields(String newTxtSearchFields) {
|
||||
this.txtSearchFields = newTxtSearchFields;
|
||||
}
|
||||
|
||||
public long getTotalPageCount() {
|
||||
return this.totalPageCount;
|
||||
}
|
||||
|
||||
public void setTotalPageCount(long newTotalPageCount) {
|
||||
this.totalPageCount = newTotalPageCount;
|
||||
}
|
||||
|
||||
public String getHeaderStatus() {
|
||||
return this.headerStatus;
|
||||
}
|
||||
|
||||
public void setHeaderStatus(String newHeaderStatus) {
|
||||
this.headerStatus = newHeaderStatus;
|
||||
}
|
||||
|
||||
public String getButQuery() {
|
||||
return this.butQuery;
|
||||
}
|
||||
|
||||
public void setButQuery(String newButQuery) {
|
||||
this.butQuery = newButQuery;
|
||||
}
|
||||
|
||||
public String getButInsert() {
|
||||
return this.butInsert;
|
||||
}
|
||||
|
||||
public void setButInsert(String newButInsert) {
|
||||
this.butInsert = newButInsert;
|
||||
}
|
||||
|
||||
public String getDisabbutInsert() {
|
||||
return this.disabbutInsert;
|
||||
}
|
||||
|
||||
public void setDisabbutInsert(String newDisabbutInsert) {
|
||||
this.disabbutInsert = newDisabbutInsert;
|
||||
}
|
||||
|
||||
public String getButExecute() {
|
||||
return this.butExecute;
|
||||
}
|
||||
|
||||
public void setButExecute(String newButExecute) {
|
||||
this.butExecute = newButExecute;
|
||||
}
|
||||
|
||||
public String getDisabbutExecute() {
|
||||
return this.disabbutExecute;
|
||||
}
|
||||
|
||||
public void setDisabbutExecute(String newDisabbutExecute) {
|
||||
this.disabbutExecute = newDisabbutExecute;
|
||||
}
|
||||
|
||||
public String getButSave() {
|
||||
return this.butSave;
|
||||
}
|
||||
|
||||
public void setButSave(String newButSave) {
|
||||
this.butSave = newButSave;
|
||||
}
|
||||
|
||||
public String getDisabbutSave() {
|
||||
return this.disabbutSave;
|
||||
}
|
||||
|
||||
public void setDisabbutSave(String newDisabbutSave) {
|
||||
this.disabbutSave = newDisabbutSave;
|
||||
}
|
||||
|
||||
public String getButDelete() {
|
||||
return this.butDelete;
|
||||
}
|
||||
|
||||
public void setButDelete(String newButDelete) {
|
||||
this.butDelete = newButDelete;
|
||||
}
|
||||
|
||||
public String getDisabbutDelete() {
|
||||
return this.disabbutDelete;
|
||||
}
|
||||
|
||||
public void setDisabbutDelete(String newDisabbutDelete) {
|
||||
this.disabbutDelete = newDisabbutDelete;
|
||||
}
|
||||
|
||||
public String getButRefresh() {
|
||||
return this.butRefresh;
|
||||
}
|
||||
|
||||
public void setButRefresh(String newButRefresh) {
|
||||
this.butRefresh = newButRefresh;
|
||||
}
|
||||
|
||||
public String getDisabbutRefresh() {
|
||||
return this.disabbutRefresh;
|
||||
}
|
||||
|
||||
public void setDisabbutRefresh(String newDisabbutRefresh) {
|
||||
this.disabbutRefresh = newDisabbutRefresh;
|
||||
}
|
||||
|
||||
public String getButHelp() {
|
||||
return this.butHelp;
|
||||
}
|
||||
|
||||
public void setButHelp(String newButHelp) {
|
||||
this.butHelp = newButHelp;
|
||||
}
|
||||
|
||||
public String getDisabbutHelp() {
|
||||
return this.disabbutHelp;
|
||||
}
|
||||
|
||||
public void setDisabbutHelp(String newDisabbutHelp) {
|
||||
this.disabbutHelp = newDisabbutHelp;
|
||||
}
|
||||
|
||||
public String getButPrint() {
|
||||
return this.butPrint;
|
||||
}
|
||||
|
||||
public void setButPrint(String newButPrint) {
|
||||
this.butPrint = newButPrint;
|
||||
}
|
||||
|
||||
public String getDisabbutPrint() {
|
||||
return this.disabbutPrint;
|
||||
}
|
||||
|
||||
public void setDisabbutPrint(String newDisabbutPrint) {
|
||||
this.disabbutPrint = newDisabbutPrint;
|
||||
}
|
||||
|
||||
public String getButNextHeader() {
|
||||
return this.butNextHeader;
|
||||
}
|
||||
|
||||
public void setButNextHeader(String newButNextHeader) {
|
||||
this.butNextHeader = newButNextHeader;
|
||||
}
|
||||
|
||||
public String getDisabbutNextHeader() {
|
||||
return this.disabbutNextHeader;
|
||||
}
|
||||
|
||||
public void setDisabbutNextHeader(String newDisabbutNextHeader) {
|
||||
this.disabbutNextHeader = newDisabbutNextHeader;
|
||||
}
|
||||
|
||||
public String getButPrevHeader() {
|
||||
return this.butPrevHeader;
|
||||
}
|
||||
|
||||
public void setButPrevHeader(String newButPrevHeader) {
|
||||
this.butPrevHeader = newButPrevHeader;
|
||||
}
|
||||
|
||||
public String getDisabbutPrevHeader() {
|
||||
return this.disabbutPrevHeader;
|
||||
}
|
||||
|
||||
public void setDisabbutPrevHeader(String newDisabbutPrevHeader) {
|
||||
this.disabbutPrevHeader = newDisabbutPrevHeader;
|
||||
}
|
||||
|
||||
public String getButGetDetail() {
|
||||
return this.butGetDetail;
|
||||
}
|
||||
|
||||
public void setButGetDetail(String newButGetDetail) {
|
||||
this.butGetDetail = newButGetDetail;
|
||||
}
|
||||
|
||||
public String getDisabbutGetDetail() {
|
||||
return this.disabbutGetDetail;
|
||||
}
|
||||
|
||||
public void setDisabbutGetDetail(String newDisabbutGetDetail) {
|
||||
this.disabbutGetDetail = newDisabbutGetDetail;
|
||||
}
|
||||
|
||||
public String getButJumpHeader() {
|
||||
return this.butJumpHeader;
|
||||
}
|
||||
|
||||
public void setButJumpHeader(String newButJumpHeader) {
|
||||
this.butJumpHeader = newButJumpHeader;
|
||||
}
|
||||
|
||||
public String getDisabbutJumpHeader() {
|
||||
return this.disabbutJumpHeader;
|
||||
}
|
||||
|
||||
public void setDisabbutJumpHeader(String newDisabbutJumpHeader) {
|
||||
this.disabbutJumpHeader = newDisabbutJumpHeader;
|
||||
}
|
||||
|
||||
public String getButJumpDetail() {
|
||||
return this.butJumpDetail;
|
||||
}
|
||||
|
||||
public void setButJumpDetail(String newButJumpDetail) {
|
||||
this.butJumpDetail = newButJumpDetail;
|
||||
}
|
||||
|
||||
public String getDisabbutJumpDetail() {
|
||||
return this.disabbutJumpDetail;
|
||||
}
|
||||
|
||||
public void setDisabbutJumpDetail(String newDisabbutJumpDetail) {
|
||||
this.disabbutJumpDetail = newDisabbutJumpDetail;
|
||||
}
|
||||
|
||||
public String getButExit() {
|
||||
return this.butExit;
|
||||
}
|
||||
|
||||
public void setButExit(String newButExit) {
|
||||
this.butExit = newButExit;
|
||||
}
|
||||
|
||||
public String getDisabbutExit() {
|
||||
return this.disabbutExit;
|
||||
}
|
||||
|
||||
public void setDisabbutExit(String newDisabbutExit) {
|
||||
this.disabbutExit = newDisabbutExit;
|
||||
}
|
||||
|
||||
public String getDisabheaderStatus() {
|
||||
return this.disabheaderStatus;
|
||||
}
|
||||
|
||||
public void setDisabheaderStatus(String newDisabheaderStatus) {
|
||||
this.disabheaderStatus = newDisabheaderStatus;
|
||||
}
|
||||
|
||||
public String getDisabbutQuery() {
|
||||
return this.disabbutQuery;
|
||||
}
|
||||
|
||||
public void setDisabbutQuery(String newDisabbutQuery) {
|
||||
this.disabbutQuery = newDisabbutQuery;
|
||||
}
|
||||
|
||||
public String getButNextDetail() {
|
||||
return this.butNextDetail;
|
||||
}
|
||||
|
||||
public void setButNextDetail(String newButNextDetail) {
|
||||
this.butNextDetail = newButNextDetail;
|
||||
}
|
||||
|
||||
public String getButPrevDetail() {
|
||||
return this.butPrevDetail;
|
||||
}
|
||||
|
||||
public void setButPrevDetail(String newButPrevDetail) {
|
||||
this.butPrevDetail = newButPrevDetail;
|
||||
}
|
||||
|
||||
public String getDisabbutPrevDetail() {
|
||||
return this.disabbutPrevDetail;
|
||||
}
|
||||
|
||||
public void setDisabbutPrevDetail(String newDisabbutPrevDetail) {
|
||||
this.disabbutPrevDetail = newDisabbutPrevDetail;
|
||||
}
|
||||
|
||||
public String getDisabbutNextDetail() {
|
||||
return this.disabbutNextDetail;
|
||||
}
|
||||
|
||||
public void setDisabbutNextDetail(String newDisabbutNextDetail) {
|
||||
this.disabbutNextDetail = newDisabbutNextDetail;
|
||||
}
|
||||
|
||||
public String getDisabnewPageRequested() {
|
||||
return this.disabnewPageRequested;
|
||||
}
|
||||
|
||||
public void setDisabnewPageRequested(String newDisabnewPageRequested) {
|
||||
this.disabnewPageRequested = newDisabnewPageRequested;
|
||||
}
|
||||
|
||||
public String getDisabnewPositionRequested() {
|
||||
return this.disabnewPositionRequested;
|
||||
}
|
||||
|
||||
public void setDisabnewPositionRequested(String newDisabnewPositionRequested) {
|
||||
this.disabnewPositionRequested = newDisabnewPositionRequested;
|
||||
}
|
||||
|
||||
public String getButAddRow() {
|
||||
return this.butAddRow;
|
||||
}
|
||||
|
||||
public void setButAddRow(String newButAddRow) {
|
||||
this.butAddRow = newButAddRow;
|
||||
}
|
||||
|
||||
public String getButDelRow() {
|
||||
return this.butDelRow;
|
||||
}
|
||||
|
||||
public void setButDelRow(String newButDelRow) {
|
||||
this.butDelRow = newButDelRow;
|
||||
}
|
||||
|
||||
public String getDisabbutAddRow() {
|
||||
return this.disabbutAddRow;
|
||||
}
|
||||
|
||||
public void setDisabbutAddRow(String newDisabbutAddRow) {
|
||||
this.disabbutAddRow = newDisabbutAddRow;
|
||||
}
|
||||
|
||||
public String getDisabbutDelRow() {
|
||||
return this.disabbutDelRow;
|
||||
}
|
||||
|
||||
public void setDisabbutDelRow(String newDisabbutDelRow) {
|
||||
this.disabbutDelRow = newDisabbutDelRow;
|
||||
}
|
||||
|
||||
public String getButtonClicked() {
|
||||
return this.buttonClicked;
|
||||
}
|
||||
|
||||
public void setButtonClicked(String newButtonClicked) {
|
||||
this.buttonClicked = newButtonClicked;
|
||||
}
|
||||
|
||||
public String getButtonName() {
|
||||
return this.buttonName;
|
||||
}
|
||||
|
||||
public void setButtonName(String newButtonName) {
|
||||
this.buttonName = newButtonName;
|
||||
}
|
||||
|
||||
public boolean isQueried() {
|
||||
return this.queried;
|
||||
}
|
||||
|
||||
public void setQueried(boolean newQueried) {
|
||||
this.queried = newQueried;
|
||||
}
|
||||
|
||||
public String getFirstLoad() {
|
||||
return this.firstLoad;
|
||||
}
|
||||
|
||||
public void setFirstLoad(String newFirstLoad) {
|
||||
this.firstLoad = newFirstLoad;
|
||||
}
|
||||
|
||||
public String getConfirmKey() {
|
||||
return this.confirmKey;
|
||||
}
|
||||
|
||||
public void setConfirmKey(String newConfirmKey) {
|
||||
this.confirmKey = newConfirmKey;
|
||||
}
|
||||
|
||||
public String getButtonKeys() {
|
||||
return this.buttonKeys;
|
||||
}
|
||||
|
||||
public void setButtonKeys(String newButtonKeys) {
|
||||
this.buttonKeys = newButtonKeys;
|
||||
}
|
||||
|
||||
public String getWorkListId() {
|
||||
return this.hidWorkListId;
|
||||
}
|
||||
|
||||
public void setWorkListId(String newWorkListId) {
|
||||
this.workListId = newWorkListId;
|
||||
}
|
||||
|
||||
public String getHidWorkListId() {
|
||||
return this.hidWorkListId;
|
||||
}
|
||||
|
||||
public void setHidWorkListId(String newHidWorkListId) {
|
||||
this.hidWorkListId = newHidWorkListId;
|
||||
}
|
||||
}
|
533
hrmsEjb/wenrgise/common/webtier/form/BaseLOVForm.java
Normal file
533
hrmsEjb/wenrgise/common/webtier/form/BaseLOVForm.java
Normal file
@@ -0,0 +1,533 @@
|
||||
package wenrgise.common.webtier.form;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class BaseLOVForm extends BaseForm {
|
||||
private String[] detailField1;
|
||||
|
||||
private String[] detailField2;
|
||||
|
||||
private String[] detailField3;
|
||||
|
||||
private String[] detailField4;
|
||||
|
||||
private String[] detailField5;
|
||||
|
||||
private String[] detailField6;
|
||||
|
||||
private String[] detailField7;
|
||||
|
||||
private String[] detailField8;
|
||||
|
||||
private String[] detailField9;
|
||||
|
||||
private String[] detailField10;
|
||||
|
||||
private String[] detailField11;
|
||||
|
||||
private String[] detailField12;
|
||||
|
||||
private String[] detailField13;
|
||||
|
||||
private String[] detailField14;
|
||||
|
||||
private String[] detailField15;
|
||||
|
||||
private String[] detailField16;
|
||||
|
||||
private String[] detailField17;
|
||||
|
||||
private String[] detailField18;
|
||||
|
||||
private String[] detailField19;
|
||||
|
||||
private String[] detailField20;
|
||||
|
||||
private String selRadio;
|
||||
|
||||
private ArrayList detailList;
|
||||
|
||||
private String userAction;
|
||||
|
||||
private String txtHidSubmitFirst;
|
||||
|
||||
private String txtHidAction = "FirstTime";
|
||||
|
||||
private String txtHidSelectedValue;
|
||||
|
||||
private int txtHidTotRows;
|
||||
|
||||
private int txtHidTotCols;
|
||||
|
||||
private String searchField1;
|
||||
|
||||
private String searchField2;
|
||||
|
||||
private String insertFlag;
|
||||
|
||||
private String searchFieldName1;
|
||||
|
||||
private String searchFieldName2;
|
||||
|
||||
private String multipleFlag;
|
||||
|
||||
private String queryParam;
|
||||
|
||||
private ArrayList headerList;
|
||||
|
||||
private ArrayList visibilityList;
|
||||
|
||||
private String recursiveFlag;
|
||||
|
||||
private int level;
|
||||
|
||||
private int finalLevel;
|
||||
|
||||
private int initialLevel;
|
||||
|
||||
private String searchField3;
|
||||
|
||||
private String searchField4;
|
||||
|
||||
private String searchField5;
|
||||
|
||||
private String searchField6;
|
||||
|
||||
private String searchFieldName3;
|
||||
|
||||
private String searchFieldName4;
|
||||
|
||||
private String searchFieldName5;
|
||||
|
||||
private String searchFieldName6;
|
||||
|
||||
public ArrayList getDetailList() {
|
||||
return this.detailList;
|
||||
}
|
||||
|
||||
public void setDetailList(ArrayList newDetailList) {
|
||||
this.detailList = newDetailList;
|
||||
}
|
||||
|
||||
public String getSelRadio() {
|
||||
return this.selRadio;
|
||||
}
|
||||
|
||||
public void setSelRadio(String newSelRadio) {
|
||||
this.selRadio = newSelRadio;
|
||||
}
|
||||
|
||||
public String getUserAction() {
|
||||
return this.userAction;
|
||||
}
|
||||
|
||||
public void setUserAction(String newUserAction) {
|
||||
this.userAction = newUserAction;
|
||||
}
|
||||
|
||||
public String getTxtHidAction() {
|
||||
return this.txtHidAction;
|
||||
}
|
||||
|
||||
public void setTxtHidAction(String newTxtHidAction) {
|
||||
this.txtHidAction = newTxtHidAction;
|
||||
}
|
||||
|
||||
public String getTxtHidSelectedValue() {
|
||||
return this.txtHidSelectedValue;
|
||||
}
|
||||
|
||||
public void setTxtHidSelectedValue(String newTxtHidSelectedValue) {
|
||||
this.txtHidSelectedValue = newTxtHidSelectedValue;
|
||||
}
|
||||
|
||||
public String getTxtHidSubmitFirst() {
|
||||
return this.txtHidSubmitFirst;
|
||||
}
|
||||
|
||||
public void setTxtHidSubmitFirst(String newTxtHidSubmitFirst) {
|
||||
this.txtHidSubmitFirst = newTxtHidSubmitFirst;
|
||||
}
|
||||
|
||||
public String getSearchField1() {
|
||||
return this.searchField1;
|
||||
}
|
||||
|
||||
public void setSearchField1(String newSearchField1) {
|
||||
this.searchField1 = newSearchField1;
|
||||
}
|
||||
|
||||
public int getTxtHidTotRows() {
|
||||
return this.txtHidTotRows;
|
||||
}
|
||||
|
||||
public void setTxtHidTotRows(int newTxtHidTotRows) {
|
||||
this.txtHidTotRows = newTxtHidTotRows;
|
||||
}
|
||||
|
||||
public void onLoadReset() {
|
||||
this.searchField1 = "";
|
||||
this.searchField2 = "";
|
||||
this.searchField3 = "";
|
||||
this.searchField4 = "";
|
||||
this.searchField5 = "";
|
||||
this.searchField6 = "";
|
||||
this.selRadio = "";
|
||||
this.detailField1 = null;
|
||||
this.detailField2 = null;
|
||||
this.detailField3 = null;
|
||||
this.detailField4 = null;
|
||||
this.detailField5 = null;
|
||||
this.detailField6 = null;
|
||||
this.detailField7 = null;
|
||||
this.detailField8 = null;
|
||||
this.detailField9 = null;
|
||||
this.detailField10 = null;
|
||||
this.detailField11 = null;
|
||||
this.detailField12 = null;
|
||||
this.detailField13 = null;
|
||||
this.detailField14 = null;
|
||||
this.detailField15 = null;
|
||||
this.detailField16 = null;
|
||||
this.detailField17 = null;
|
||||
this.detailField18 = null;
|
||||
this.detailField19 = null;
|
||||
this.detailField20 = null;
|
||||
this.txtHidTotRows = -1;
|
||||
this.txtHidTotCols = -1;
|
||||
this.headerList.clear();
|
||||
this.detailList.clear();
|
||||
}
|
||||
|
||||
public String[] getDetailField4() {
|
||||
return this.detailField4;
|
||||
}
|
||||
|
||||
public void setDetailField4(String[] newDetailField4) {
|
||||
this.detailField4 = newDetailField4;
|
||||
}
|
||||
|
||||
public String[] getDetailField5() {
|
||||
return this.detailField5;
|
||||
}
|
||||
|
||||
public void setDetailField5(String[] newDetailField5) {
|
||||
this.detailField5 = newDetailField5;
|
||||
}
|
||||
|
||||
public String[] getDetailField6() {
|
||||
return this.detailField6;
|
||||
}
|
||||
|
||||
public void setDetailField6(String[] newDetailField6) {
|
||||
this.detailField6 = newDetailField6;
|
||||
}
|
||||
|
||||
public String[] getDetailField7() {
|
||||
return this.detailField7;
|
||||
}
|
||||
|
||||
public void setDetailField7(String[] newDetailField7) {
|
||||
this.detailField7 = newDetailField7;
|
||||
}
|
||||
|
||||
public String[] getDetailField8() {
|
||||
return this.detailField8;
|
||||
}
|
||||
|
||||
public void setDetailField8(String[] newDetailField8) {
|
||||
this.detailField8 = newDetailField8;
|
||||
}
|
||||
|
||||
public String[] getDetailField9() {
|
||||
return this.detailField9;
|
||||
}
|
||||
|
||||
public void setDetailField9(String[] newDetailField9) {
|
||||
this.detailField9 = newDetailField9;
|
||||
}
|
||||
|
||||
public String[] getDetailField10() {
|
||||
return this.detailField10;
|
||||
}
|
||||
|
||||
public void setDetailField10(String[] newDetailField10) {
|
||||
this.detailField10 = newDetailField10;
|
||||
}
|
||||
|
||||
public String getSearchField2() {
|
||||
return this.searchField2;
|
||||
}
|
||||
|
||||
public void setSearchField2(String newSearchField2) {
|
||||
this.searchField2 = newSearchField2;
|
||||
}
|
||||
|
||||
public String[] getDetailField1() {
|
||||
return this.detailField1;
|
||||
}
|
||||
|
||||
public void setDetailField1(String[] newDetailField1) {
|
||||
this.detailField1 = newDetailField1;
|
||||
}
|
||||
|
||||
public String[] getDetailField2() {
|
||||
return this.detailField2;
|
||||
}
|
||||
|
||||
public void setDetailField2(String[] newDetailField2) {
|
||||
this.detailField2 = newDetailField2;
|
||||
}
|
||||
|
||||
public String[] getDetailField3() {
|
||||
return this.detailField3;
|
||||
}
|
||||
|
||||
public void setDetailField3(String[] newDetailField3) {
|
||||
this.detailField3 = newDetailField3;
|
||||
}
|
||||
|
||||
public int getTxtHidTotCols() {
|
||||
return this.txtHidTotCols;
|
||||
}
|
||||
|
||||
public void setTxtHidTotCols(int newTxtHidTotCols) {
|
||||
this.txtHidTotCols = newTxtHidTotCols;
|
||||
}
|
||||
|
||||
public String getInsertFlag() {
|
||||
return this.insertFlag;
|
||||
}
|
||||
|
||||
public void setInsertFlag(String newInsertFlag) {
|
||||
this.insertFlag = newInsertFlag;
|
||||
}
|
||||
|
||||
public String getSearchFieldName1() {
|
||||
return this.searchFieldName1;
|
||||
}
|
||||
|
||||
public void setSearchFieldName1(String newSearchFieldName1) {
|
||||
this.searchFieldName1 = newSearchFieldName1;
|
||||
}
|
||||
|
||||
public String getSearchFieldName2() {
|
||||
return this.searchFieldName2;
|
||||
}
|
||||
|
||||
public void setSearchFieldName2(String newSearchFieldName2) {
|
||||
this.searchFieldName2 = newSearchFieldName2;
|
||||
}
|
||||
|
||||
public String getMultipleFlag() {
|
||||
return this.multipleFlag;
|
||||
}
|
||||
|
||||
public void setMultipleFlag(String newMultipleFlag) {
|
||||
this.multipleFlag = newMultipleFlag;
|
||||
}
|
||||
|
||||
public String getQueryParam() {
|
||||
return this.queryParam;
|
||||
}
|
||||
|
||||
public void setQueryParam(String newQueryParam) {
|
||||
this.queryParam = newQueryParam;
|
||||
}
|
||||
|
||||
public ArrayList getHeaderList() {
|
||||
return this.headerList;
|
||||
}
|
||||
|
||||
public void setHeaderList(ArrayList newHeaderList) {
|
||||
this.headerList = newHeaderList;
|
||||
}
|
||||
|
||||
public ArrayList getVisibilityList() {
|
||||
return this.visibilityList;
|
||||
}
|
||||
|
||||
public void setVisibilityList(ArrayList newVisibilityList) {
|
||||
this.visibilityList = newVisibilityList;
|
||||
}
|
||||
|
||||
public String getVisibility(int iIndex) {
|
||||
return this.visibilityList.get(iIndex);
|
||||
}
|
||||
|
||||
public String[] getDetailField11() {
|
||||
return this.detailField11;
|
||||
}
|
||||
|
||||
public void setDetailField11(String[] newDetailField11) {
|
||||
this.detailField11 = newDetailField11;
|
||||
}
|
||||
|
||||
public String[] getDetailField12() {
|
||||
return this.detailField12;
|
||||
}
|
||||
|
||||
public void setDetailField12(String[] newDetailField12) {
|
||||
this.detailField12 = newDetailField12;
|
||||
}
|
||||
|
||||
public String[] getDetailField13() {
|
||||
return this.detailField13;
|
||||
}
|
||||
|
||||
public void setDetailField13(String[] newDetailField13) {
|
||||
this.detailField13 = newDetailField13;
|
||||
}
|
||||
|
||||
public String[] getDetailField14() {
|
||||
return this.detailField14;
|
||||
}
|
||||
|
||||
public void setDetailField14(String[] newDetailField14) {
|
||||
this.detailField14 = newDetailField14;
|
||||
}
|
||||
|
||||
public String[] getDetailField15() {
|
||||
return this.detailField15;
|
||||
}
|
||||
|
||||
public void setDetailField15(String[] newDetailField15) {
|
||||
this.detailField15 = newDetailField15;
|
||||
}
|
||||
|
||||
public String[] getDetailField17() {
|
||||
return this.detailField17;
|
||||
}
|
||||
|
||||
public void setDetailField17(String[] newDetailField17) {
|
||||
this.detailField17 = newDetailField17;
|
||||
}
|
||||
|
||||
public String[] getDetailField18() {
|
||||
return this.detailField18;
|
||||
}
|
||||
|
||||
public void setDetailField18(String[] newDetailField18) {
|
||||
this.detailField18 = newDetailField18;
|
||||
}
|
||||
|
||||
public String[] getDetailField19() {
|
||||
return this.detailField19;
|
||||
}
|
||||
|
||||
public void setDetailField19(String[] newDetailField19) {
|
||||
this.detailField19 = newDetailField19;
|
||||
}
|
||||
|
||||
public String[] getDetailField16() {
|
||||
return this.detailField16;
|
||||
}
|
||||
|
||||
public void setDetailField16(String[] newDetailField16) {
|
||||
this.detailField16 = newDetailField16;
|
||||
}
|
||||
|
||||
public String[] getDetailField20() {
|
||||
return this.detailField20;
|
||||
}
|
||||
|
||||
public void setDetailField20(String[] newDetailField20) {
|
||||
this.detailField20 = newDetailField20;
|
||||
}
|
||||
|
||||
public String getRecursiveFlag() {
|
||||
return this.recursiveFlag;
|
||||
}
|
||||
|
||||
public void setRecursiveFlag(String newRecursiveFlag) {
|
||||
this.recursiveFlag = newRecursiveFlag;
|
||||
}
|
||||
|
||||
public int getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public void setLevel(int newLevel) {
|
||||
this.level = newLevel;
|
||||
}
|
||||
|
||||
public int getFinalLevel() {
|
||||
return this.finalLevel;
|
||||
}
|
||||
|
||||
public void setFinalLevel(int newFinalLevel) {
|
||||
this.finalLevel = newFinalLevel;
|
||||
}
|
||||
|
||||
public int getInitialLevel() {
|
||||
return this.initialLevel;
|
||||
}
|
||||
|
||||
public void setInitialLevel(int newInitialLevel) {
|
||||
this.initialLevel = newInitialLevel;
|
||||
}
|
||||
|
||||
public String getSearchField3() {
|
||||
return this.searchField3;
|
||||
}
|
||||
|
||||
public void setSearchField3(String newSearchField3) {
|
||||
this.searchField3 = newSearchField3;
|
||||
}
|
||||
|
||||
public String getSearchField4() {
|
||||
return this.searchField4;
|
||||
}
|
||||
|
||||
public void setSearchField4(String newSearchField4) {
|
||||
this.searchField4 = newSearchField4;
|
||||
}
|
||||
|
||||
public String getSearchField5() {
|
||||
return this.searchField5;
|
||||
}
|
||||
|
||||
public void setSearchField5(String newSearchField5) {
|
||||
this.searchField5 = newSearchField5;
|
||||
}
|
||||
|
||||
public String getSearchField6() {
|
||||
return this.searchField6;
|
||||
}
|
||||
|
||||
public void setSearchField6(String newSearchField6) {
|
||||
this.searchField6 = newSearchField6;
|
||||
}
|
||||
|
||||
public String getSearchFieldName3() {
|
||||
return this.searchFieldName3;
|
||||
}
|
||||
|
||||
public void setSearchFieldName3(String newSearchFieldName3) {
|
||||
this.searchFieldName3 = newSearchFieldName3;
|
||||
}
|
||||
|
||||
public String getSearchFieldName4() {
|
||||
return this.searchFieldName4;
|
||||
}
|
||||
|
||||
public void setSearchFieldName4(String newSearchFieldName4) {
|
||||
this.searchFieldName4 = newSearchFieldName4;
|
||||
}
|
||||
|
||||
public String getSearchFieldName5() {
|
||||
return this.searchFieldName5;
|
||||
}
|
||||
|
||||
public void setSearchFieldName5(String newSearchFieldName5) {
|
||||
this.searchFieldName5 = newSearchFieldName5;
|
||||
}
|
||||
|
||||
public String getSearchFieldName6() {
|
||||
return this.searchFieldName6;
|
||||
}
|
||||
|
||||
public void setSearchFieldName6(String newSearchFieldName6) {
|
||||
this.searchFieldName6 = newSearchFieldName6;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user