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: package org.kuali.core.bo;
17:
18: import java.util.LinkedHashMap;
19:
20: /**
21: *
22: * This is a description of what this class does - ag266 don't forget to fill this in.
23: *
24: * @author Kuali Rice Team (kuali-rice@googlegroups.com)
25: *
26: */
27: public class DocumentStatus extends PersistableBusinessObjectBase {
28:
29: private String financialDocumentStatusCode;
30: private String financialDocumentStatusName;
31:
32: /**
33: * Default constructor.
34: */
35: public DocumentStatus() {
36:
37: }
38:
39: /**
40: * Gets the financialDocumentStatusCode attribute.
41: *
42: * @return Returns the financialDocumentStatusCode
43: *
44: */
45: public String getFinancialDocumentStatusCode() {
46: return financialDocumentStatusCode;
47: }
48:
49: /**
50: * Sets the financialDocumentStatusCode attribute.
51: *
52: * @param financialDocumentStatusCode The financialDocumentStatusCode to set.
53: *
54: */
55: public void setFinancialDocumentStatusCode(
56: String financialDocumentStatusCode) {
57: this .financialDocumentStatusCode = financialDocumentStatusCode;
58: }
59:
60: /**
61: * Gets the financialDocumentStatusName attribute.
62: *
63: * @return Returns the financialDocumentStatusName
64: *
65: */
66: public String getFinancialDocumentStatusName() {
67: return financialDocumentStatusName;
68: }
69:
70: /**
71: * Sets the financialDocumentStatusName attribute.
72: *
73: * @param financialDocumentStatusName The financialDocumentStatusName to set.
74: *
75: */
76: public void setFinancialDocumentStatusName(
77: String financialDocumentStatusName) {
78: this .financialDocumentStatusName = financialDocumentStatusName;
79: }
80:
81: /**
82: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
83: */
84: protected LinkedHashMap toStringMapper() {
85: LinkedHashMap m = new LinkedHashMap();
86: m.put("financialDocumentStatusCode",
87: this.financialDocumentStatusCode);
88: return m;
89: }
90: }
|