001: /*
002: * Copyright 2006-2007 The Kuali Foundation.
003: *
004: * Licensed under the Educational Community License, Version 1.0 (the "License");
005: * you may not use this file except in compliance with the License.
006: * You may obtain a copy of the License at
007: *
008: * http://www.opensource.org/licenses/ecl1.php
009: *
010: * Unless required by applicable law or agreed to in writing, software
011: * distributed under the License is distributed on an "AS IS" BASIS,
012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013: * See the License for the specific language governing permissions and
014: * limitations under the License.
015: */
016:
017: package org.kuali.module.chart.bo;
018:
019: import java.util.LinkedHashMap;
020:
021: import org.kuali.core.bo.PersistableBusinessObjectBase;
022: import org.kuali.kfs.bo.Options;
023:
024: /**
025: *
026: */
027: public class OrganizationReversionDetail extends
028: PersistableBusinessObjectBase {
029:
030: private Integer universityFiscalYear;
031: private String chartOfAccountsCode;
032: private String organizationCode;
033: private String organizationReversionCategoryCode;
034: private String organizationReversionCode;
035: private String organizationReversionObjectCode;
036:
037: private ObjectCode organizationReversionObject;
038: private Org organization;
039: private Chart chartOfAccounts;
040: private OrganizationReversionCategory organizationReversionCategory;
041: private Options universityFiscal;
042:
043: /**
044: * Default constructor.
045: */
046: public OrganizationReversionDetail() {
047:
048: }
049:
050: /**
051: * Gets the universityFiscalYear attribute.
052: *
053: * @return Returns the universityFiscalYear
054: */
055: public Integer getUniversityFiscalYear() {
056: return universityFiscalYear;
057: }
058:
059: /**
060: * Sets the universityFiscalYear attribute.
061: *
062: * @param universityFiscalYear The universityFiscalYear to set.
063: */
064: public void setUniversityFiscalYear(Integer universityFiscalYear) {
065: this .universityFiscalYear = universityFiscalYear;
066: }
067:
068: /**
069: * Gets the chartOfAccountsCode attribute.
070: *
071: * @return Returns the chartOfAccountsCode
072: */
073: public String getChartOfAccountsCode() {
074: return chartOfAccountsCode;
075: }
076:
077: /**
078: * Sets the chartOfAccountsCode attribute.
079: *
080: * @param chartOfAccountsCode The chartOfAccountsCode to set.
081: */
082: public void setChartOfAccountsCode(String chartOfAccountsCode) {
083: this .chartOfAccountsCode = chartOfAccountsCode;
084: }
085:
086: /**
087: * Gets the organizationCode attribute.
088: *
089: * @return Returns the organizationCode
090: */
091: public String getOrganizationCode() {
092: return organizationCode;
093: }
094:
095: /**
096: * Sets the organizationCode attribute.
097: *
098: * @param organizationCode The organizationCode to set.
099: */
100: public void setOrganizationCode(String organizationCode) {
101: this .organizationCode = organizationCode;
102: }
103:
104: /**
105: * Gets the organizationReversionCategoryCode attribute.
106: *
107: * @return Returns the organizationReversionCategoryCode
108: */
109: public String getOrganizationReversionCategoryCode() {
110: return organizationReversionCategoryCode;
111: }
112:
113: /**
114: * Sets the organizationReversionCategoryCode attribute.
115: *
116: * @param organizationReversionCategoryCode The organizationReversionCategoryCode to set.
117: */
118: public void setOrganizationReversionCategoryCode(
119: String organizationReversionCategoryCode) {
120: this .organizationReversionCategoryCode = organizationReversionCategoryCode;
121: }
122:
123: /**
124: * Gets the organizationReversionCode attribute.
125: *
126: * @return Returns the organizationReversionCode
127: */
128: public String getOrganizationReversionCode() {
129: return organizationReversionCode;
130: }
131:
132: /**
133: * Sets the organizationReversionCode attribute.
134: *
135: * @param organizationReversionCode The organizationReversionCode to set.
136: */
137: public void setOrganizationReversionCode(
138: String organizationReversionCode) {
139: this .organizationReversionCode = organizationReversionCode;
140: }
141:
142: /**
143: * Gets the organizationReversionObjectCode attribute.
144: *
145: * @return Returns the organizationReversionObjectCode
146: */
147: public String getOrganizationReversionObjectCode() {
148: return organizationReversionObjectCode;
149: }
150:
151: /**
152: * Sets the organizationReversionObjectCode attribute.
153: *
154: * @param organizationReversionObjectCode The organizationReversionObjectCode to set.
155: */
156: public void setOrganizationReversionObjectCode(
157: String organizationReversionObjectCode) {
158: this .organizationReversionObjectCode = organizationReversionObjectCode;
159: }
160:
161: /**
162: * Gets the organizationReversionObject attribute.
163: *
164: * @return Returns the organizationReversionObject
165: */
166: public ObjectCode getOrganizationReversionObject() {
167: return organizationReversionObject;
168: }
169:
170: /**
171: * Sets the organizationReversionObject attribute.
172: *
173: * @param organizationReversionObject The organizationReversionObject to set.
174: * @deprecated
175: */
176: public void setOrganizationReversionObject(
177: ObjectCode organizationReversionObject) {
178: this .organizationReversionObject = organizationReversionObject;
179: }
180:
181: /**
182: * Gets the organization attribute.
183: *
184: * @return Returns the organization
185: */
186: public Org getOrganization() {
187: return organization;
188: }
189:
190: /**
191: * Sets the organization attribute.
192: *
193: * @param organization The organization to set.
194: * @deprecated
195: */
196: public void setOrganization(Org organization) {
197: this .organization = organization;
198: }
199:
200: /**
201: * Gets the chartOfAccounts attribute.
202: *
203: * @return Returns the chartOfAccounts
204: */
205: public Chart getChartOfAccounts() {
206: return chartOfAccounts;
207: }
208:
209: /**
210: * Sets the chartOfAccounts attribute.
211: *
212: * @param chartOfAccounts The chartOfAccounts to set.
213: * @deprecated
214: */
215: public void setChartOfAccounts(Chart chartOfAccounts) {
216: this .chartOfAccounts = chartOfAccounts;
217: }
218:
219: /**
220: * Gets the organizationReversionCategory attribute.
221: *
222: * @return Returns the organizationReversionCategory.
223: */
224: public OrganizationReversionCategory getOrganizationReversionCategory() {
225: return organizationReversionCategory;
226: }
227:
228: /**
229: * Sets the organizationReversionCategory attribute value.
230: *
231: * @param organizationReversionCategory The organizationReversionCategory to set.
232: */
233: public void setOrganizationReversionCategory(
234: OrganizationReversionCategory organizationReversionCategory) {
235: this .organizationReversionCategory = organizationReversionCategory;
236: }
237:
238: /**
239: * Gets the universityFiscal attribute.
240: *
241: * @return Returns the universityFiscal.
242: */
243: public Options getUniversityFiscal() {
244: return universityFiscal;
245: }
246:
247: /**
248: * Sets the universityFiscal attribute value.
249: *
250: * @param universityFiscal The universityFiscal to set.
251: */
252: public void setUniversityFiscal(Options universityFiscal) {
253: this .universityFiscal = universityFiscal;
254: }
255:
256: /**
257: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
258: */
259: protected LinkedHashMap toStringMapper() {
260: LinkedHashMap m = new LinkedHashMap();
261: return m;
262: }
263: }
|