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 Jul 22, 2004
18: *
19: * To change the template for this generated file go to
20: * Window>Preferences>Java>Code Generation>Code and Comments
21: */
22: package org.kuali.module.pdp.form.customerprofile;
23:
24: import org.apache.struts.action.ActionForm;
25:
26: /**
27: * @author delyea To change the template for this generated type comment go to Window>Preferences>Java>Code
28: * Generation>Code and Comments
29: */
30: public class CustomerBankForm extends ActionForm {
31: private String disbursementDescription;
32: private String disbursementTypeCode;
33: private Integer bankId;
34:
35: public CustomerBankForm() {
36: }
37:
38: /**
39: * @return Returns the disbursementTypeCode.
40: */
41: public String getDisbursementTypeCode() {
42: return disbursementTypeCode;
43: }
44:
45: /**
46: * @param disbursementTypeCode The disbursementTypeCode to set.
47: */
48: public void setDisbursementTypeCode(String disbursementTypeCode) {
49: this .disbursementTypeCode = disbursementTypeCode;
50: }
51:
52: /**
53: * @return Returns the bankId.
54: */
55: public Integer getBankId() {
56: return bankId;
57: }
58:
59: /**
60: * @return Returns the disbursementDescription.
61: */
62: public String getDisbursementDescription() {
63: return disbursementDescription;
64: }
65:
66: /**
67: * @param bankId The bankId to set.
68: */
69: public void setBankId(Integer bankId) {
70: this .bankId = bankId;
71: }
72:
73: /**
74: * @param disbursementDescription The disbursementDescription to set.
75: */
76: public void setDisbursementDescription(
77: String disbursementDescription) {
78: this.disbursementDescription = disbursementDescription;
79: }
80:
81: }
|