01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: /*
17: * Created on Oct 4, 2004
18: *
19: */
20: package org.kuali.module.pdp.service;
21:
22: import java.io.Serializable;
23: import java.math.BigDecimal;
24: import java.util.List;
25:
26: import org.kuali.module.pdp.xml.XmlHeader;
27:
28: /**
29: * @author jsissom
30: */
31: public class LoadPaymentStatus implements Serializable {
32: private List warnings;
33: private int detailCount;
34: private BigDecimal detailTotal;
35: private XmlHeader header;
36: private Integer batchId;
37:
38: public LoadPaymentStatus() {
39: super ();
40: }
41:
42: public LoadPaymentStatus(List w, int d, BigDecimal dt) {
43: warnings = w;
44: detailCount = d;
45: detailTotal = dt;
46: }
47:
48: public Integer getBatchId() {
49: return batchId;
50: }
51:
52: public void setBatchId(Integer batchId) {
53: this .batchId = batchId;
54: }
55:
56: public XmlHeader getHeader() {
57: return header;
58: }
59:
60: public void setHeader(XmlHeader header) {
61: this .header = header;
62: }
63:
64: public int getDetailCount() {
65: return detailCount;
66: }
67:
68: public void setDetailCount(int detailCount) {
69: this .detailCount = detailCount;
70: }
71:
72: public BigDecimal getDetailTotal() {
73: return detailTotal;
74: }
75:
76: public void setDetailTotal(BigDecimal detailTotal) {
77: this .detailTotal = detailTotal;
78: }
79:
80: public List getWarnings() {
81: return warnings;
82: }
83:
84: public void setWarnings(List warnings) {
85: this.warnings = warnings;
86: }
87: }
|