View Javadoc
1   /*
2    * The Kuali Financial System, a comprehensive financial management system for higher education.
3    * 
4    * Copyright 2005-2014 The Kuali Foundation
5    * 
6    * This program is free software: you can redistribute it and/or modify
7    * it under the terms of the GNU Affero General Public License as
8    * published by the Free Software Foundation, either version 3 of the
9    * License, or (at your option) any later version.
10   * 
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU Affero General Public License for more details.
15   * 
16   * You should have received a copy of the GNU Affero General Public License
17   * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18   */
19  package org.kuali.kfs.pdp.businessobject;
20  
21  import org.kuali.rice.core.api.util.type.KualiDecimal;
22  
23  /*
24   * This is a simple java bean class created for
25   * Research Participant Upload. It
26   * represents the entire Payment Detail row, which is
27   * part of the format that will appear in the spreadsheet
28   * from the Accounting Office.
29   */
30  
31  public class ResearchParticipantPaymentDetail {
32  
33      private String payeeName;
34      private String addressLine1;
35      private String addressLine2;
36      private String addressLine3;
37      private String city;
38      private String state;
39      private String zip;
40      private String checkStubText;
41      private KualiDecimal amount;
42  
43      public String getPayeeName() {
44          return payeeName;
45      }
46      public void setPayeeName(String payeeName) {
47          this.payeeName = payeeName;
48      }
49      public String getAddressLine1() {
50          return addressLine1;
51      }
52      public void setAddressLine1(String addressLine1) {
53          this.addressLine1 = addressLine1;
54      }
55      public String getAddressLine2() {
56          return addressLine2;
57      }
58      public void setAddressLine2(String addressLine2) {
59          this.addressLine2 = addressLine2;
60      }
61      public String getAddressLine3() {
62          return addressLine3;
63      }
64      public void setAddressLine3(String addressLine3) {
65          this.addressLine3 = addressLine3;
66      }
67      public String getCity() {
68          return city;
69      }
70      public void setCity(String city) {
71          this.city = city;
72      }
73      public String getState() {
74          return state;
75      }
76      public void setState(String state) {
77          this.state = state;
78      }
79      public String getZip() {
80          return zip;
81      }
82      public void setZip(String zip) {
83          this.zip = zip;
84      }
85      public String getCheckStubText() {
86          return checkStubText;
87      }
88      public void setCheckStubText(String checkStubText) {
89          this.checkStubText = checkStubText;
90      }
91      public KualiDecimal getAmount() {
92          return amount;
93      }
94      public void setAmount(KualiDecimal amount) {
95          this.amount = amount;
96      }
97  
98  
99  }