001: /*
002: * Copyright 2007 The Kuali Foundation.
003: *
004: * Licensed under the Educational Community License, Version 1.0 (the "License");
005: * you may not use this file except in compliance with the License.
006: * You may obtain a copy of the License at
007: *
008: * http://www.opensource.org/licenses/ecl1.php
009: *
010: * Unless required by applicable law or agreed to in writing, software
011: * distributed under the License is distributed on an "AS IS" BASIS,
012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013: * See the License for the specific language governing permissions and
014: * limitations under the License.
015: */
016: /*
017: * Created on Aug 2, 2004
018: *
019: */
020: package org.kuali.module.pdp.bo;
021:
022: import java.io.Serializable;
023: import java.math.BigDecimal;
024: import java.util.Date;
025:
026: /**
027: * @author delyea
028: */
029: public class BatchSearch implements Serializable {
030: private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger
031: .getLogger(BatchSearch.class);
032:
033: private Integer batchId;
034: private Integer paymentCount;
035: private BigDecimal paymentTotalAmount;
036: private Date beginDate;
037: private Date endDate;
038: private String chartCode;
039: private String orgCode;
040: private String subUnitCode;
041:
042: /**
043: * @return Returns the batchId.
044: */
045: public Integer getBatchId() {
046: return batchId;
047: }
048:
049: /**
050: * @return Returns the beginDate.
051: */
052: public Date getBeginDate() {
053: return beginDate;
054: }
055:
056: /**
057: * @return Returns the chartCode.
058: */
059: public String getChartCode() {
060: return chartCode;
061: }
062:
063: /**
064: * @return Returns the endDate.
065: */
066: public Date getEndDate() {
067: return endDate;
068: }
069:
070: /**
071: * @return Returns the orgCode.
072: */
073: public String getOrgCode() {
074: return orgCode;
075: }
076:
077: /**
078: * @return Returns the paymentCount.
079: */
080: public Integer getPaymentCount() {
081: return paymentCount;
082: }
083:
084: /**
085: * @return Returns the paymentTotalAmount.
086: */
087: public BigDecimal getPaymentTotalAmount() {
088: return paymentTotalAmount;
089: }
090:
091: /**
092: * @return Returns the subUnitCode.
093: */
094: public String getSubUnitCode() {
095: return subUnitCode;
096: }
097:
098: /**
099: * @param batchId The batchId to set.
100: */
101: public void setBatchId(Integer batchId) {
102: this .batchId = batchId;
103: }
104:
105: /**
106: * @param beginDate The beginDate to set.
107: */
108: public void setBeginDate(Date beginDate) {
109: this .beginDate = beginDate;
110: }
111:
112: /**
113: * @param chartCode The chartCode to set.
114: */
115: public void setChartCode(String chartCode) {
116: this .chartCode = chartCode;
117: }
118:
119: /**
120: * @param endDate The endDate to set.
121: */
122: public void setEndDate(Date endDate) {
123: this .endDate = endDate;
124: }
125:
126: /**
127: * @param orgCode The orgCode to set.
128: */
129: public void setOrgCode(String orgCode) {
130: this .orgCode = orgCode;
131: }
132:
133: /**
134: * @param paymentCount The paymentCount to set.
135: */
136: public void setPaymentCount(Integer paymentCount) {
137: this .paymentCount = paymentCount;
138: }
139:
140: /**
141: * @param paymentTotalAmount The paymentTotalAmount to set.
142: */
143: public void setPaymentTotalAmount(BigDecimal paymentTotalAmount) {
144: this .paymentTotalAmount = paymentTotalAmount;
145: }
146:
147: /**
148: * @param subUnitCode The subUnitCode to set.
149: */
150: public void setSubUnitCode(String subUnitCode) {
151: this.subUnitCode = subUnitCode;
152: }
153: }
|