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 Aug 19, 2004
18: *
19: */
20: package org.kuali.module.pdp.service;
21:
22: /**
23: * @author jsissom
24: */
25: public class AchInformation {
26: private String idType;
27: private String payeeId;
28: private String departmentCode;
29: private String achBankRoutingNbr;
30: private String achBankAccountNbr;
31: private String achAccountType;
32: private String adviceEmailAddress;
33:
34: public AchInformation() {
35: super ();
36: }
37:
38: public String getAchBankAccountNbr() {
39: return achBankAccountNbr;
40: }
41:
42: public void setAchBankAccountNbr(String achBankAccountNbr) {
43: this .achBankAccountNbr = achBankAccountNbr;
44: }
45:
46: public String getAchBankRoutingNbr() {
47: return achBankRoutingNbr;
48: }
49:
50: public void setAchBankRoutingNbr(String achBankRoutingNbr) {
51: this .achBankRoutingNbr = achBankRoutingNbr;
52: }
53:
54: public String getAdviceEmailAddress() {
55: return adviceEmailAddress;
56: }
57:
58: public void setAdviceEmailAddress(String adviceEmailAddress) {
59: this .adviceEmailAddress = adviceEmailAddress;
60: }
61:
62: public String getDepartmentCode() {
63: return departmentCode;
64: }
65:
66: public void setDepartmentCode(String departmentCode) {
67: this .departmentCode = departmentCode;
68: }
69:
70: public String getIdType() {
71: return idType;
72: }
73:
74: public void setIdType(String idType) {
75: this .idType = idType;
76: }
77:
78: public String getPayeeId() {
79: return payeeId;
80: }
81:
82: public void setPayeeId(String payeeId) {
83: this .payeeId = payeeId;
84: }
85:
86: public String getAchAccountType() {
87: return achAccountType;
88: }
89:
90: public void setAchAccountType(String achAccountType) {
91: this.achAccountType = achAccountType;
92: }
93: }
|