1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.ole.coa.businessobject;
18
19 import java.util.LinkedHashMap;
20
21 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
22 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
23
24
25
26
27 public class IndirectCostRecoveryExclusionAccount extends PersistableBusinessObjectBase implements MutableInactivatable {
28
29 private String chartOfAccountsCode;
30 private String accountNumber;
31 private String financialObjectChartOfAccountCode;
32 private String financialObjectCode;
33 private Chart chart;
34 private Account account;
35 private Chart financialObjectChartOfAccount;
36 private ObjectCode objectCodeCurrent;
37 private boolean active;
38
39 public IndirectCostRecoveryExclusionAccount() {
40 super();
41 }
42
43
44
45
46
47
48 public String getChartOfAccountsCode() {
49 return chartOfAccountsCode;
50 }
51
52
53
54
55
56
57 public void setChartOfAccountsCode(String chartOfAccountsCode) {
58 this.chartOfAccountsCode = chartOfAccountsCode;
59 }
60
61
62
63
64
65
66
67 public String getAccountNumber() {
68 return accountNumber;
69 }
70
71
72
73
74
75
76 public void setAccountNumber(String accountNumber) {
77 this.accountNumber = accountNumber;
78 }
79
80
81
82
83
84
85
86 public String getFinancialObjectChartOfAccountCode() {
87 return financialObjectChartOfAccountCode;
88 }
89
90
91
92
93
94
95 public void setFinancialObjectChartOfAccountCode(String financialObjectChartOfAccountCode) {
96 this.financialObjectChartOfAccountCode = financialObjectChartOfAccountCode;
97 }
98
99
100
101
102
103
104
105 public String getFinancialObjectCode() {
106 return financialObjectCode;
107 }
108
109
110
111
112
113
114 public void setFinancialObjectCode(String financialObjectCode) {
115 this.financialObjectCode = financialObjectCode;
116 }
117
118
119
120
121
122
123
124 public Chart getChart() {
125 return chart;
126 }
127
128
129
130
131
132
133
134 public void setChart(Chart chart) {
135 this.chart = chart;
136 }
137
138
139
140
141
142
143 public Account getAccount() {
144 return account;
145 }
146
147
148
149
150
151
152
153 public void setAccount(Account account) {
154 this.account = account;
155 }
156
157
158
159
160
161
162 public Chart getFinancialObjectChartOfAccount() {
163 return financialObjectChartOfAccount;
164 }
165
166
167
168
169
170
171
172 public void setFinancialObjectChartOfAccount(Chart financialObjectChartOfAccount) {
173 this.financialObjectChartOfAccount = financialObjectChartOfAccount;
174 }
175
176
177
178
179 public ObjectCode getObjectCodeCurrent() {
180 return objectCodeCurrent;
181 }
182
183
184
185
186
187 public void setObjectCodeCurrent(ObjectCode objectCodeCurrent) {
188 this.objectCodeCurrent = objectCodeCurrent;
189 }
190
191
192
193
194 public boolean isActive() {
195 return active;
196 }
197
198
199
200
201
202 public void setActive(boolean active) {
203 this.active = active;
204 }
205
206
207
208
209
210 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() {
211 LinkedHashMap m = new LinkedHashMap();
212 m.put("chartOfAccountsCode", this.chartOfAccountsCode);
213 m.put("accountNumber", this.accountNumber);
214 m.put("financialObjectChartOfAccountCode", this.financialObjectChartOfAccountCode);
215 m.put("financialObjectCode", this.financialObjectCode);
216 return m;
217 }
218
219
220 }