01: /*
02: * Copyright 2006-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: package org.kuali.module.purap.bo;
18:
19: import java.util.LinkedHashMap;
20:
21: import org.kuali.core.bo.PersistableBusinessObjectBase;
22:
23: /**
24: * Capital Asset Management System Business Object.
25: */
26: public class CapitalAssetManagementSystem extends
27: PersistableBusinessObjectBase {
28:
29: private Integer capitalAssetManagementSystemIdentifier;
30: private Integer capitalAssetManagementDocumentIdentifier;
31: private String capitalAssetManagementSystemDescription;
32:
33: private CapitalAssetManagement capitalAssetManagementDocument;
34:
35: /**
36: * Default constructor.
37: */
38: public CapitalAssetManagementSystem() {
39:
40: }
41:
42: public Integer getCapitalAssetManagementDocumentIdentifier() {
43: return capitalAssetManagementDocumentIdentifier;
44: }
45:
46: public void setCapitalAssetManagementDocumentIdentifier(
47: Integer capitalAssetManagementDocumentIdentifier) {
48: this .capitalAssetManagementDocumentIdentifier = capitalAssetManagementDocumentIdentifier;
49: }
50:
51: public String getCapitalAssetManagementSystemDescription() {
52: return capitalAssetManagementSystemDescription;
53: }
54:
55: public void setCapitalAssetManagementSystemDescription(
56: String capitalAssetManagementSystemDescription) {
57: this .capitalAssetManagementSystemDescription = capitalAssetManagementSystemDescription;
58: }
59:
60: public Integer getCapitalAssetManagementSystemIdentifier() {
61: return capitalAssetManagementSystemIdentifier;
62: }
63:
64: public void setCapitalAssetManagementSystemIdentifier(
65: Integer capitalAssetManagementSystemIdentifier) {
66: this .capitalAssetManagementSystemIdentifier = capitalAssetManagementSystemIdentifier;
67: }
68:
69: public CapitalAssetManagement getCapitalAssetManagementDocument() {
70: return capitalAssetManagementDocument;
71: }
72:
73: /**
74: * @deprecated
75: */
76: public void setCapitalAssetManagementDocument(
77: CapitalAssetManagement capitalAssetManagementDocument) {
78: this .capitalAssetManagementDocument = capitalAssetManagementDocument;
79: }
80:
81: /**
82: * @see org.kuali.core.bo.BusinessObjectBase#toStringMapper()
83: */
84: protected LinkedHashMap toStringMapper() {
85: LinkedHashMap m = new LinkedHashMap();
86: if (this .capitalAssetManagementSystemIdentifier != null) {
87: m.put("capitalAssetManagementSystemIdentifier",
88: this.capitalAssetManagementSystemIdentifier
89: .toString());
90: }
91: return m;
92: }
93: }
|