1 /*
2 * Copyright 2007 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
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 9, 2004
18 *
19 */
20 package org.kuali.ole.pdp.businessobject;
21
22 import java.util.LinkedHashMap;
23
24 import org.kuali.ole.sys.OLEPropertyConstants;
25 import org.kuali.ole.sys.businessobject.TimestampedBusinessObjectBase;
26 import org.kuali.rice.core.api.util.type.KualiInteger;
27
28 public class AchAccountNumber extends TimestampedBusinessObjectBase {
29
30 private KualiInteger id;
31 private String achBankAccountNbr;
32
33 public AchAccountNumber() {
34 super();
35 }
36
37
38 /**
39 * Gets the id attribute.
40 *
41 * @return Returns the id.
42 */
43 public KualiInteger getId() {
44 return id;
45 }
46
47
48 /**
49 * Sets the id attribute value.
50 *
51 * @param id The id to set.
52 */
53 public void setId(KualiInteger id) {
54 this.id = id;
55 }
56
57
58 /**
59 * Gets the achBankAccountNbr attribute.
60 *
61 * @return Returns the achBankAccountNbr.
62 */
63 public String getAchBankAccountNbr() {
64 return achBankAccountNbr;
65 }
66
67
68 /**
69 * Sets the achBankAccountNbr attribute value.
70 *
71 * @param achBankAccountNbr The achBankAccountNbr to set.
72 */
73 public void setAchBankAccountNbr(String achBankAccountNbr) {
74 this.achBankAccountNbr = achBankAccountNbr;
75 }
76
77
78 /**
79 * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper()
80 */
81
82 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
83 LinkedHashMap m = new LinkedHashMap();
84 m.put(OLEPropertyConstants.ID, this.id);
85
86 return m;
87 }
88 }